summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-07-20 21:30:28 +0000
committerBill Wendling <isanbard@gmail.com>2009-07-20 21:30:28 +0000
commit4cef584860acbde1d71157564e0d5f6f935b38a6 (patch)
tree501c926780a09d0a6b59e1c9ba2d1bfec0032732 /lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp
parent1224c386981f7948f298ed9ad444c40609570f2e (diff)
downloadllvm-4cef584860acbde1d71157564e0d5f6f935b38a6.tar.gz
llvm-4cef584860acbde1d71157564e0d5f6f935b38a6.tar.bz2
llvm-4cef584860acbde1d71157564e0d5f6f935b38a6.tar.xz
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
Diffstat (limited to 'lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp')
-rw-r--r--lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp b/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp
index 7dd6fcc304..7b0989fce3 100644
--- a/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp
+++ b/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp
@@ -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
}