blob: 3907ed0f78c9d68c5be3dfebe6971781bcacc827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
; RUN: llvm-as < %s | opt -argpromotion | llvm-dis | 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
}
|