From: Chris Lattner Date: Thu, 5 Oct 2006 00:26:05 +0000 (+0000) Subject: emit jump table before debug info X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fea13d33e50a9d6777237e76bb59b3be5422bdbc;p=oota-llvm.git emit jump table before debug info git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30731 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index 9eb406e5793..4868b68435d 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; }