[TwoAddressInstructionPass] When looking for a 3 addr conversion after commuting...
[oota-llvm.git] / test / CodeGen / X86 / fast-cc-pass-in-regs.ll
1 ; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | FileCheck %s
2 ; check that fastcc is passing stuff in regs.
3
4 declare x86_fastcallcc i64 @callee(i64 inreg)
5
6 define i64 @caller() {
7         %X = call x86_fastcallcc  i64 @callee( i64 4294967299 )          ; <i64> [#uses=1]
8 ; CHECK: mov{{.*}}edx, 1
9         ret i64 %X
10 }
11
12 define x86_fastcallcc i64 @caller2(i64 inreg %X) {
13         ret i64 %X
14 ; CHECK: mov{{.*}}eax, ecx
15 }
16
17 declare x86_thiscallcc i64 @callee2(i32)
18
19 define i64 @caller3() {
20         %X = call x86_thiscallcc i64 @callee2( i32 3 )
21 ; CHECK: mov{{.*}}ecx, 3
22         ret i64 %X
23 }
24
25 define x86_thiscallcc i32 @caller4(i32 %X) {
26         ret i32 %X
27 ; CHECK: mov{{.*}}eax, ecx
28 }
29