aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GVN/2007-07-26-NonRedundant.ll
blob: 211830a39af3f85507e8aeefd8339a5ac6ddb6e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: opt < %s -gvn | llvm-dis

@bsLive = external global i32		; <i32*> [#uses=2]

define i32 @bsR(i32 %n) {
entry:
	br i1 false, label %cond_next, label %bb19

cond_next:		; preds = %entry
	store i32 0, i32* @bsLive, align 4
	br label %bb19

bb19:		; preds = %cond_next, %entry
	%tmp29 = load i32, i32* @bsLive, align 4		; <i32> [#uses=0]
	ret i32 0
}