mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
5df6895f75
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18801 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
243 B
LLVM
14 lines
243 B
LLVM
; RUN: llvm-as < %s | opt -ipsccp | llvm-dis | grep -v 'ret int 17' | grep -v 'ret int undef' | not grep ret
|
|
|
|
implementation
|
|
|
|
internal int %bar(int %A) {
|
|
%X = add int 1, 2
|
|
ret int %A
|
|
}
|
|
|
|
int %foo() {
|
|
%X = call int %bar(int 17)
|
|
ret int %X
|
|
}
|