]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/CodeGen/X86/fast-cc-pass-in-regs.ll
[X86][AVX] Added (V)MOVDDUP / (V)MOVSLDUP / (V)MOVSHDUP memory folding + tests.
[opencl/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.
4 declare x86_fastcallcc i64 @callee(i64 inreg)
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 }
12 define x86_fastcallcc i64 @caller2(i64 inreg %X) {
13         ret i64 %X
14 ; CHECK: mov{{.*}}eax, ecx
15 }
17 declare x86_thiscallcc i64 @callee2(i32)
19 define i64 @caller3() {
20         %X = call x86_thiscallcc i64 @callee2( i32 3 )
21 ; CHECK: mov{{.*}}ecx, 3
22         ret i64 %X
23 }
25 define x86_thiscallcc i32 @caller4(i32 %X) {
26         ret i32 %X
27 ; CHECK: mov{{.*}}eax, ecx
28 }