[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp

Chris Lattner sabre at nondot.org
Wed Oct 4 17:26:19 PDT 2006



Changes in directory llvm/lib/Target/PowerPC:

PPCAsmPrinter.cpp updated: 1.197 -> 1.198
---
Log message:

emit jump table before debug info


---
Diffs of the changes:  (+3 -3)

 PPCAsmPrinter.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.197 llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.198
--- llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp:1.197	Wed Oct  4 19:24:46 2006
+++ llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp	Wed Oct  4 19:26:05 2006
@@ -461,12 +461,12 @@
     }
   }
 
+  // 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;
 }






More information about the llvm-commits mailing list