diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-27 00:17:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-27 00:17:20 +0000 |
commit | 4129ccdb7048ac9bc671c4f47e86e9144235000d (patch) | |
tree | c3a9507594580848a4add265964e818f55633ed3 /lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | |
parent | 8c86db58c83830199a39d1e64657f937c61f1f3a (diff) |
Switch MSP430, CellSPU, SystemZ, Darwin/PPC, Alpha, and Sparc to
EmitFunctionHeader:
7 files changed, 16 insertions(+), 210 deletions(-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp')
-rw-r--r-- | lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp index 15b454861e..839d1b19c1 100644 --- a/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp +++ b/lib/Target/XCore/AsmPrinter/XCoreAsmPrinter.cpp @@ -237,9 +237,6 @@ bool XCoreAsmPrinter::runOnMachineFunction(MachineFunction &MF) { // Print out constants referenced by the function EmitConstantPool(MF.getConstantPool()); - // Print out jump tables referenced by the function - EmitJumpTableInfo(MF); - // Emit the function start directives emitFunctionStart(MF); @@ -268,6 +265,9 @@ bool XCoreAsmPrinter::runOnMachineFunction(MachineFunction &MF) { // Emit function end directives emitFunctionEnd(MF); + // Print out jump tables referenced by the function + EmitJumpTableInfo(MF); + // Emit post-function debug information. DW->EndFunction(&MF); |