mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
15 lines
301 B
LLVM
15 lines
301 B
LLVM
|
; RUN: llvm-as < %s | opt -ipconstprop -deadargelim | llvm-dis | not grep %X
|
||
|
|
||
|
implementation
|
||
|
|
||
|
internal int %foo(int %X) {
|
||
|
%Y = call int %foo( int %X )
|
||
|
%Z = add int %Y, 1
|
||
|
ret int %Z
|
||
|
}
|
||
|
|
||
|
void %bar() {
|
||
|
call int %foo( int 17 ) ; <int>:0 [#uses=0]
|
||
|
ret void
|
||
|
}
|