Correct some bogus target triples.
[oota-llvm.git] / test / CodeGen / X86 / fast-cc-pass-in-regs.ll
1 ; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | \
2 ; RUN:   grep {mov      EDX, 1}
3 ; check that fastcc is passing stuff in regs.
4
5 declare x86_fastcallcc i64 @callee(i64)
6
7 define i64 @caller() {
8         %X = call x86_fastcallcc  i64 @callee( i64 4294967299 )          ; <i64> [#uses=1]
9         ret i64 %X
10 }
11
12 define x86_fastcallcc i64 @caller2(i64 %X) {
13         ret i64 %X
14 }
15