mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
9 lines
163 B
LLVM
9 lines
163 B
LLVM
|
; RUN: llvm-as < %s | llc -march=x86-64 | grep mov | count 1
|
||
|
|
||
|
define i32 @f() nounwind {
|
||
|
tail call void @t( i32 1 ) nounwind
|
||
|
ret i32 0
|
||
|
}
|
||
|
|
||
|
declare void @t(i32)
|