[llvm-commits] [llvm] r39732 - /llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Duncan Sands baldrick at free.fr
Wed Jul 11 09:59:21 PDT 2007


Author: baldrick
Date: Wed Jul 11 11:59:20 2007
New Revision: 39732

URL: http://llvm.org/viewvc/llvm-project?rev=39732&view=rev
Log:
Exception handling has been implemented.

Modified:
    llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Modified: llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp?rev=39732&r1=39731&r2=39732&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Wed Jul 11 11:59:20 2007
@@ -43,11 +43,10 @@
   
   // FIXME: Implement efficient support for garbage collection intrinsics.
   PM.add(createLowerGCPass());
-  
-  // FIXME: Implement the invoke/unwind instructions!
+
   if (!ExceptionHandling)
     PM.add(createLowerInvokePass(getTargetLowering()));
-  
+
   // Make sure that no unreachable blocks are instruction selected.
   PM.add(createUnreachableBlockEliminationPass());
 





More information about the llvm-commits mailing list