aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-10-05 00:26:05 +0000
committerChris Lattner <sabre@nondot.org>2006-10-05 00:26:05 +0000
commitfea13d33e50a9d6777237e76bb59b3be5422bdbc (patch)
treeb6f6619ed6c1f1fdaaad604b9f5e00167ed61678 /lib/Target/PowerPC/PPCAsmPrinter.cpp
parent37dfa02788711b72618497ce5acf39596e3a0211 (diff)
emit jump table before debug info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30731 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r--lib/Target/PowerPC/PPCAsmPrinter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp
index 9eb406e579..4868b68435 100644
--- a/lib/Target/PowerPC/PPCAsmPrinter.cpp
+++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp
@@ -461,12 +461,12 @@ bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
}
}
+ // Print out jump tables referenced by the function.
+ EmitJumpTableInfo(MF.getJumpTableInfo());
+
// Emit post-function debug information.
DW.EndFunction();
- // Print out jump tables referenced by the function.
- EmitJumpTableInfo(MF.getJumpTableInfo());
-
// We didn't modify anything.
return false;
}