1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/CodeGen/X86/fast-cc-pass-in-regs.ll

16 lines
381 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | \
; RUN: grep {mov EDX, 1}
2005-05-13 01:09:04 +02:00
; check that fastcc is passing stuff in regs.
2007-02-28 19:35:36 +01:00
declare x86_fastcallcc i64 @callee(i64)
2007-02-28 19:35:36 +01:00
define i64 @caller() {
%X = call x86_fastcallcc i64 @callee( i64 4294967299 ) ; <i64> [#uses=1]
2007-02-28 19:35:36 +01:00
ret i64 %X
2005-05-13 01:09:04 +02:00
}
2007-02-28 19:35:36 +01:00
define x86_fastcallcc i64 @caller2(i64 %X) {
ret i64 %X
2005-05-13 01:09:04 +02:00
}
2007-02-28 19:35:36 +01:00