mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +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
|
||
|
}
|
||
|
|