[llvm-commits] CVS: llvm/lib/CodeGen/IntrinsicLowering.cpp

Jim Laskey jlaskey at apple.com
Thu Feb 22 08:12:33 PST 2007



Changes in directory llvm/lib/CodeGen:

IntrinsicLowering.cpp updated: 1.68 -> 1.69
---
Log message:

Remove assertion.

---
Diffs of the changes:  (+1 -4)

 IntrinsicLowering.cpp |    5 +----
 1 files changed, 1 insertion(+), 4 deletions(-)


Index: llvm/lib/CodeGen/IntrinsicLowering.cpp
diff -u llvm/lib/CodeGen/IntrinsicLowering.cpp:1.68 llvm/lib/CodeGen/IntrinsicLowering.cpp:1.69
--- llvm/lib/CodeGen/IntrinsicLowering.cpp:1.68	Wed Feb 21 16:53:45 2007
+++ llvm/lib/CodeGen/IntrinsicLowering.cpp	Thu Feb 22 10:12:17 2007
@@ -356,12 +356,9 @@
   case Intrinsic::dbg_region_end:
   case Intrinsic::dbg_func_start:
   case Intrinsic::dbg_declare:
-    break;    // Simply strip out debugging intrinsics
-    
   case Intrinsic::eh_exception:
   case Intrinsic::eh_handlers:
-    assert(0 && "Should not have leaked through");
-    break;
+    break;    // Simply strip out debugging intrinsics
 
   case Intrinsic::memcpy_i32:
   case Intrinsic::memcpy_i64: {






More information about the llvm-commits mailing list