aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ArgumentPromotion/control-flow.ll
blob: 8e47ac94d6907f934a2c6ccf33a573e6e1f1c149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llvm-upgrade < %s | llvm-as | opt -argpromotion | llvm-dis | \
; RUN:    not grep {load int\* null}

implementation

internal int %callee(bool %C, int* %P) {
	br bool %C, label %T, label %F
T:
	ret int 17
F:
	%X = load int* %P
	ret int %X
}

int %foo() {
	%X = call int %callee(bool true, int* null)
	ret int %X
}