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...


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76479 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling
2009-07-20 21:30:28 +00:00
parent 1224c38698
commit 4cef584860
5 changed files with 10 additions and 5 deletions

View File

@@ -92,7 +92,8 @@ FunctionPass *llvm::createSystemZCodePrinterPass(formatted_raw_ostream &o,
}
bool SystemZAsmPrinter::doInitialization(Module &M) {
Mang = new Mangler(M, "", TAI->getPrivateGlobalPrefix());
Mang = new Mangler(M, "", TAI->getPrivateGlobalPrefix(),
TAI->getLessPrivateGlobalPrefix());
return false; // success
}