blob: f2696ce814da157365712b25579fae057a8a55b2 [file] [log] [blame]
Dan Gohman36a09472009-09-08 23:54:48 +00001; RUN: llc < %s -O0 -march=x86-64 -mattr=+mmx | FileCheck %s
Dan Gohmanc3c9c482009-08-05 05:33:42 +00002; PR4684
3
4target 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"
6target triple = "x86_64-apple-darwin9.8"
7
8declare void @func2(<1 x i64>)
9
10define 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}