diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-10 02:20:00 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-10 02:20:00 +0000 |
commit | 9be3c97183f832d084bcf0fab82f7cd8aae08385 (patch) | |
tree | 902740a9c96315d137bfa799b78a7dc6586aad3e /test/Transforms/PruneEH | |
parent | b8cafe3427a168414400e5dfcbea78996792d2c3 (diff) |
Turn unwind_to into "unwinds to".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48123 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/PruneEH')
-rw-r--r-- | test/Transforms/PruneEH/unwindto.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/PruneEH/unwindto.ll b/test/Transforms/PruneEH/unwindto.ll index 8e5ac25ec8..ed69f4ce22 100644 --- a/test/Transforms/PruneEH/unwindto.ll +++ b/test/Transforms/PruneEH/unwindto.ll @@ -1,11 +1,11 @@ -; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep unwind_to +; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep {unwinds to} define i8 @test7(i1 %b) { -entry: unwind_to %cleanup +entry: unwinds to %cleanup br i1 %b, label %cond_true, label %cond_false -cond_true: unwind_to %cleanup +cond_true: unwinds to %cleanup br label %cleanup -cond_false: unwind_to %cleanup +cond_false: unwinds to %cleanup br label %cleanup cleanup: %x = phi i8 [0, %entry], [1, %cond_true], [1, %cond_true], |