aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/StringTableBuilder.cpp
AgeCommit message (Collapse)AuthorFilesLines
2014-10-06MachObjectWriter: optimize the string table for common sufficesHans Wennborg1-3/+17
This is a follow-up to r207670 (ELF) and r218636 (COFF). Differential Revision: http://reviews.llvm.org/D5622 llvm-svn: 219126
2014-09-29WinCOFFObjectWriter: optimize the string table for common sufficesHans Wennborg1-4/+27
This is a follow-up from r207670 which did the same for ELF. Differential Revision: http://reviews.llvm.org/D5530 llvm-svn: 218636
2014-09-24Revert r218380. This was breaking Apple internal build bots.Akira Hatanaka1-6/+14
llvm-svn: 218409
2014-09-24Replace a hand-written suffix compare with std::lexicographical_compare.Benjamin Kramer1-14/+6
No functionality change. llvm-svn: 218380
2014-07-03Invert the MC -> Object dependency.Rafael Espindola1-0/+51
Now that we have a lib/MC/MCAnalysis, the dependency was there just because of two helper classes. Move the two over to MC. This will allow IRObjectFile to parse inline assembly. llvm-svn: 212248