From 54ac7e9e84f647b64d594a3232b982a0febdb2c3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 13 May 2005 15:48:41 +0000 Subject: [PATCH] Fix buggy test llvm-svn: 21936 --- test/Regression/Transforms/Inline/invoke_test-3.ll | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Regression/Transforms/Inline/invoke_test-3.ll b/test/Regression/Transforms/Inline/invoke_test-3.ll index 7ca3f6ad297..5601a4b90a6 100644 --- a/test/Regression/Transforms/Inline/invoke_test-3.ll +++ b/test/Regression/Transforms/Inline/invoke_test-3.ll @@ -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