blob: 3907ed0f78c9d68c5be3dfebe6971781bcacc827 [file] [log] [blame]
; 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
}