Eliminate more uses of llvm-as and llvm-dis.
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-bc.ll
1 ; RUN: llc < %s -O0 -march=x86-64 -mattr=+mmx | FileCheck %s
2 ; PR4684
3
4 target datalayout =
5 "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
6 target triple = "x86_64-apple-darwin9.8"
7
8 declare void @func2(<1 x i64>)
9
10 define void @func1() nounwind {
11
12 ; This isn't spectacular, but it's MMX code at -O0...
13 ; CHECK: movl $2, %eax
14 ; CHECK: movd %rax, %mm0
15 ; CHECK: movd %mm0, %rdi
16
17         call void @func2(<1 x i64> <i64 2>)
18         ret void
19 }