diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-07-20 21:30:28 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-07-20 21:30:28 +0000 |
commit | dde1a8eef4fd2e6022a7da0007a92b03dc160357 (patch) | |
tree | 0258913a2a82c15fc9c9d9a46778dfca99d7f7cf /llvm/lib/CodeGen | |
parent | 17051250addd7cf42554b32ae587c647057dcf19 (diff) | |
download | bcm5719-llvm-dde1a8eef4fd2e6022a7da0007a92b03dc160357.tar.gz bcm5719-llvm-dde1a8eef4fd2e6022a7da0007a92b03dc160357.zip |
Pass in the unfortunately named "LessPrivatePrefix" for the
"LinkerPrivatePrefix". It seems to have been used in only one place before I
started this "linker_private" business. I'm thinking that a rename is in
order...
llvm-svn: 76479
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 80bdf04e8e8..ad6cf77b767 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -154,7 +154,8 @@ void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const { } bool AsmPrinter::doInitialization(Module &M) { - Mang = new Mangler(M, TAI->getGlobalPrefix(), TAI->getPrivateGlobalPrefix()); + Mang = new Mangler(M, TAI->getGlobalPrefix(), TAI->getPrivateGlobalPrefix(), + TAI->getLessPrivateGlobalPrefix()); if (TAI->doesAllowQuotesInName()) Mang->setUseQuotes(true); |