diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-21 07:51:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-21 07:51:23 +0000 |
commit | 99946fb63fcb7c464f14d4978e00047624fce7d9 (patch) | |
tree | 4cdad49cdb844493aca4cc7f574bed73e6260d76 /llvm/lib/Target/IA64/IA64AsmPrinter.cpp | |
parent | 02363bbb61ffdb1128232d45dddac27b808b2448 (diff) | |
download | bcm5719-llvm-99946fb63fcb7c464f14d4978e00047624fce7d9.tar.gz bcm5719-llvm-99946fb63fcb7c464f14d4978e00047624fce7d9.zip |
Adjust to capitalized AsmPrinter method names
llvm-svn: 24456
Diffstat (limited to 'llvm/lib/Target/IA64/IA64AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/IA64/IA64AsmPrinter.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/Target/IA64/IA64AsmPrinter.cpp b/llvm/lib/Target/IA64/IA64AsmPrinter.cpp index 89c2565f71e..c2a7b93e769 100644 --- a/llvm/lib/Target/IA64/IA64AsmPrinter.cpp +++ b/llvm/lib/Target/IA64/IA64AsmPrinter.cpp @@ -60,10 +60,10 @@ void IA64SharedAsmPrinter::printConstantPool(MachineConstantPool *MCP) { // FIXME: would be nice to have rodata (no 'w') when appropriate? SwitchSection("\n\t.section .data, \"aw\", \"progbits\"\n", 0); for (unsigned i = 0, e = CP.size(); i != e; ++i) { - emitAlignment(TD.getTypeAlignmentShift(CP[i]->getType())); + EmitAlignment(TD.getTypeAlignmentShift(CP[i]->getType())); O << PrivateGlobalPrefix << "CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t" << CommentString << *CP[i] << "\n"; - emitGlobalConstant(CP[i]); + EmitGlobalConstant(CP[i]); } } @@ -120,7 +120,7 @@ bool IA64SharedAsmPrinter::doFinalization(Module &M) { abort(); } - emitAlignment(Align); + EmitAlignment(Align); O << "\t.type " << name << ",@object\n"; O << "\t.size " << name << "," << Size << "\n"; O << name << ":\t\t\t\t// "; @@ -128,7 +128,7 @@ bool IA64SharedAsmPrinter::doFinalization(Module &M) { O << " = "; WriteAsOperand(O, C, false, false, &M); O << "\n"; - emitGlobalConstant(C); + EmitGlobalConstant(C); } } @@ -260,7 +260,7 @@ namespace { /// method to print assembly for each instruction. /// bool IA64AsmPrinter::runOnMachineFunction(MachineFunction &MF) { - setupMachineFunction(MF); + SetupMachineFunction(MF); O << "\n\n"; // Print out constants referenced by the function @@ -269,7 +269,7 @@ bool IA64AsmPrinter::runOnMachineFunction(MachineFunction &MF) { // Print out labels for the function. SwitchSection("\n\t.section .text, \"ax\", \"progbits\"\n", MF.getFunction()); // ^^ means "Allocated instruXions in mem, initialized" - emitAlignment(5); + EmitAlignment(5); O << "\t.global\t" << CurrentFnName << "\n"; O << "\t.type\t" << CurrentFnName << ", @function\n"; O << CurrentFnName << ":\n"; |