summaryrefslogtreecommitdiff
path: root/test/Transforms/JumpThreading/undef.ll
blob: 8c285a3465190c8a8993a1a1243ff16f6847deae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt %s -jump-threading | llvm-dis | not grep {br }
; RUN: opt %s -jump-threading | llvm-dis | 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
}