mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
16 lines
337 B
LLVM
16 lines
337 B
LLVM
|
; RUN: llvm-as < %s | opt -inline -disable-output &&
|
||
|
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep callee &&
|
||
|
; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep div
|
||
|
|
||
|
implementation
|
||
|
|
||
|
internal int %callee(int %A, int %B) {
|
||
|
%C = div int %A, %B
|
||
|
ret int %C
|
||
|
}
|
||
|
|
||
|
int %test() {
|
||
|
%X = call int %callee(int 10, int 3)
|
||
|
ret int %X
|
||
|
}
|