[llvm-branch-commits] [llvm-branch] r86590 - /llvm/branches/Apple/Leela-M1/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp

Bill Wendling isanbard at gmail.com
Mon Nov 9 13:21:44 PST 2009


Author: void
Date: Mon Nov  9 15:21:43 2009
New Revision: 86590

URL: http://llvm.org/viewvc/llvm-project?rev=86590&view=rev
Log:
$ svn merge -c 86588 https://llvm.org/svn/llvm-project/llvm/trunk
--- Merging r86588 into '.':
U    lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp


Modified:
    llvm/branches/Apple/Leela-M1/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp

Modified: llvm/branches/Apple/Leela-M1/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Leela-M1/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp?rev=86590&r1=86589&r2=86590&view=diff

==============================================================================
--- llvm/branches/Apple/Leela-M1/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp (original)
+++ llvm/branches/Apple/Leela-M1/lib/Target/PowerPC/AsmPrinter/PPCAsmPrinter.cpp Mon Nov  9 15:21:43 2009
@@ -669,14 +669,14 @@
 
   O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
 
-  // Print out jump tables referenced by the function.
-  EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
-
   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
 
   // Emit post-function debug information.
   DW->EndFunction(&MF);
 
+  // Print out jump tables referenced by the function.
+  EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
+
   // We didn't modify anything.
   return false;
 }





More information about the llvm-branch-commits mailing list