Fix buggy test
authorChris Lattner <sabre@nondot.org>
Fri, 13 May 2005 15:48:41 +0000 (15:48 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 13 May 2005 15:48:41 +0000 (15:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21936 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/Inline/invoke_test-3.ll

index 7ca3f6ad2975a0af1b3e0e14fd2fa8872088b7b0..5601a4b90a613a12c9df7d07786856f34d577a32 100644 (file)
@@ -1,10 +1,9 @@
 ; Test that any rethrown exceptions in an inlined function are automatically
 ; turned into branches to the invoke destination.
 
-; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep 'call void %llvm.unwind'
+; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep unwind$
 
 declare void %might_throw()
-declare void %llvm.unwind()
 
 implementation
 
@@ -13,8 +12,7 @@ internal int %callee() {
 cont:
        ret int 0
 exc:   ; This just rethrows the exception!
-       call void %llvm.unwind()
-       ret int 123  ; DEAD!
+       unwind
 }
 
 ; caller returns true if might_throw throws an exception... which gets