blob: e09af0aa9ff14c0af32a7c3f1cf926e7705c376e [file] [log] [blame]
; RUN: opt %s -jump-threading -S | not grep {br }
; RUN: opt %s -jump-threading -S | grep {ret i32} | count 1
define i32 @test(i1 %cond) {
br i1 undef, label %T1, label %F1
T1:
ret i32 42
F1:
ret i32 17
}