aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ConstProp/phi.ll
blob: 064b681c5cf3abef935b34b5f406487b445eb951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; This is a basic sanity check for constant propogation.  The add instruction 
; should be eliminated.

; RUN: if as < %s | opt -constprop -die | dis | grep phi
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi

int "test"(bool %B)
begin
BB0:
	br bool %B, label %BB1, label %BB3
BB1:
	br label %BB3
BB3:
	%Ret = phi int [1, %BB0], [1, %BB1]
	ret int %Ret
end