Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / X86 / fast-cc-pass-in-regs.ll
blobc8621a7780bd8cd0152fc48f458a37eea851d5d2
1 ; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | \
2 ; RUN:   grep {mov      EDX, 1}
3 ; check that fastcc is passing stuff in regs.
5 declare x86_fastcallcc i64 @callee(i64)
7 define i64 @caller() {
8         %X = call x86_fastcallcc  i64 @callee( i64 4294967299 )          ; <i64> [#uses=1]
9         ret i64 %X
12 define x86_fastcallcc i64 @caller2(i64 %X) {
13         ret i64 %X