mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-08 20:16:05 +00:00
11 lines
123 B
LLVM
11 lines
123 B
LLVM
; RUN: llvm-as < %s | llc
|
|
|
|
int %foo(int %x) {
|
|
ret int 42
|
|
}
|
|
|
|
int %main() {
|
|
%r = call int %foo(int 15)
|
|
ret int %r
|
|
}
|