[llvm-commits] CVS: llvm/lib/CodeGen/AsmPrinter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon Aug 16 23:06:31 PDT 2004
Changes in directory llvm/lib/CodeGen:
AsmPrinter.cpp updated: 1.2 -> 1.3
---
Log message:
We now allow targets to use any prefix they want for global symbols. Lets
hear it for ".".
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/CodeGen/AsmPrinter.cpp
diff -u llvm/lib/CodeGen/AsmPrinter.cpp:1.2 llvm/lib/CodeGen/AsmPrinter.cpp:1.3
--- llvm/lib/CodeGen/AsmPrinter.cpp:1.2 Mon Aug 16 21:28:26 2004
+++ llvm/lib/CodeGen/AsmPrinter.cpp Tue Aug 17 01:06:19 2004
@@ -19,7 +19,7 @@
using namespace llvm;
bool AsmPrinter::doInitialization(Module &M) {
- Mang = new Mangler(M, UsesUnderscorePrefix);
+ Mang = new Mangler(M, GlobalPrefix);
return false;
}
More information about the llvm-commits
mailing list