diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-17 02:28:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-17 02:28:26 +0000 |
commit | 07e78f177a883811c8228540cc64050e184f9703 (patch) | |
tree | 97b83abfa0f68325567f11d823389dab6be4969d /llvm/lib/CodeGen/AsmPrinter.cpp | |
parent | 278f1cb3d46845904504d7838d6f751de74fb2c5 (diff) | |
download | bcm5719-llvm-07e78f177a883811c8228540cc64050e184f9703.tar.gz bcm5719-llvm-07e78f177a883811c8228540cc64050e184f9703.zip |
Some asmwriters want an _ prefix
llvm-svn: 15845
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index 1e104fccc8d..0cf5823bb8c 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/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; } |