1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

New, more general, interface.

llvm-svn: 15866
This commit is contained in:
Chris Lattner 2004-08-17 06:07:43 +00:00
parent a54012917a
commit 3bc964c8fb
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ namespace {
PPC32AsmPrinter(std::ostream &O, TargetMachine &TM)
: AsmPrinter(O, TM), LabelNumber(0) {
UsesUnderscorePrefix = 1;
GlobalPrefix = "_";
}
/// Unique incrementer for label values for referencing Global values.

View File

@ -666,7 +666,7 @@ bool Printer::doInitialization(Module &M) {
O << '\n';
}
Mang = new Mangler(M, true);
Mang = new Mangler(M, "_");
return false; // success
}