mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01: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)
|