aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-08-17 02:28:26 +0000
committerChris Lattner <sabre@nondot.org>2004-08-17 02:28:26 +0000
commited1ff01639f8c0ea63131662568c82699447b6b3 (patch)
treec2910fc12a530848a4747775e92fffd7ee43ef57 /lib/CodeGen/AsmPrinter.cpp
parentf1cb7953947900035edd090ad4b81b1b2bb48791 (diff)
Some asmwriters want an _ prefix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15845 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp
index 1e104fccc8..0cf5823bb8 100644
--- a/lib/CodeGen/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter.cpp
@@ -19,7 +19,7 @@
using namespace llvm;
bool AsmPrinter::doInitialization(Module &M) {
- Mang = new Mangler(M);
+ Mang = new Mangler(M, UsesUnderscorePrefix);
return false;
}