diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-06 06:55:58 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-06 06:55:58 +0000 |
commit | 819a66cf2582f6d9108a7a7f4a75175d7901a8dc (patch) | |
tree | 5c9b4b1f415a14407f74aa35ad47de0123acc78f /test/Feature | |
parent | cd943e431732ebf4d4dda462e02397f101746274 (diff) | |
download | external_llvm-819a66cf2582f6d9108a7a7f4a75175d7901a8dc.zip external_llvm-819a66cf2582f6d9108a7a7f4a75175d7901a8dc.tar.gz external_llvm-819a66cf2582f6d9108a7a7f4a75175d7901a8dc.tar.bz2 |
Exercise the new CFG change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/unwindto.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Feature/unwindto.ll b/test/Feature/unwindto.ll index 5c2333a..bfdf203 100644 --- a/test/Feature/unwindto.ll +++ b/test/Feature/unwindto.ll @@ -52,3 +52,16 @@ entry: unwind: unwind_to %unwind unwind } + +define i8 @test7(i1 %b) { +entry: unwind_to %cleanup + br i1 %b, label %cond_true, label %cond_false +cond_true: unwind_to %cleanup + br label %cleanup +cond_false: unwind_to %cleanup + br label %cleanup +cleanup: + %x = phi i8 [0, %entry], [1, %cond_true], [1, %cond_true], + [2, %cond_false], [2, %cond_false] + ret i8 %x +} |