Exercise the new CFG change.
[oota-llvm.git] / test / Feature / unwindto.ll
index 5c2333af3b804c1db55cfdb8330908294e94e5d8..bfdf203959bc660ec6b67f90ef55e48cbd45c8cd 100644 (file)
@@ -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
+}