summaryrefslogtreecommitdiffstats
path: root/llvm/test/tools/llvm-split/unnamed.ll
Commit message (Collapse)AuthorAgeFilesLines
* Have a single way for creating unique value names.Rafael Espindola2015-11-221-3/+3
| | | | | | | | | | | We had two code paths. One would create names like "foo.1" and the other names like "foo1". For globals it is important to use "foo.1" to help C++ name demangling. For locals there is no strong reason to go one way or the other so I kept the most common mangling (foo1). llvm-svn: 253804
* TransformUtils: Introduce module splitter.Peter Collingbourne2015-08-211-0/+31
The module splitter splits a module into linkable partitions. It will be used to implement parallel LTO code generation. This initial version of the splitter does not attempt to deal with the somewhat subtle symbol visibility issues around module splitting. These will be dealt with in a future change. Differential Revision: http://reviews.llvm.org/D12132 llvm-svn: 245662
OpenPOWER on IntegriCloud