[llvm-commits] CVS: llvm/test/Regression/Transforms/Inline/invoke_test-3.ll

Chris Lattner lattner at cs.uiuc.edu
Sun Aug 24 07:54:01 PDT 2003


Changes in directory llvm/test/Regression/Transforms/Inline:

invoke_test-3.ll updated: 1.2 -> 1.3

---
Log message:

Fix grep


---
Diffs of the changes:

Index: llvm/test/Regression/Transforms/Inline/invoke_test-3.ll
diff -u llvm/test/Regression/Transforms/Inline/invoke_test-3.ll:1.2 llvm/test/Regression/Transforms/Inline/invoke_test-3.ll:1.3
--- llvm/test/Regression/Transforms/Inline/invoke_test-3.ll:1.2	Sun Aug 24 07:16:58 2003
+++ llvm/test/Regression/Transforms/Inline/invoke_test-3.ll	Sun Aug 24 07:53:20 2003
@@ -1,10 +1,10 @@
 ; Test that any rethrown exceptions in an inlined function are automatically
 ; turned into branches to the invoke destination.
 
-; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.exc.rethrow'
+; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.unwind'
 
 declare void %might_throw()
-declare void %llvm.exc.rethrow()
+declare void %llvm.unwind()
 
 implementation
 
@@ -13,7 +13,7 @@
 cont:
 	ret int 0
 exc:	; This just rethrows the exception!
-	call void %llvm.exc.rethrow()
+	call void %llvm.unwind()
 	ret int 123  ; DEAD!
 }
 





More information about the llvm-commits mailing list