aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GVNPRE/cast.ll
blob: 3536a14571fb8f4cbe8b11396bc8123d6375039e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llvm-as < %s | opt -gvnpre | llvm-dis | grep b.gvnpre

define i32 @extract() {
entry:		; preds = %cond_false, %entry
	br i1 true, label %cond_true, label %cond_false

cond_true:
  br label %end

cond_false:
  %a = sext i16 0 to i32
  br label %end

end:
  %b = sext i16 0 to i32
  ret i32 %b
}