mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-05-20 22:16:20 +00:00
19 lines
295 B
LLVM
19 lines
295 B
LLVM
; 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
|
|
}
|
|
|