blob: 8d7dc8f9a7f89c9a953b9d04f3655038c4e8cbaa [file] [log] [blame]
Jakob Stoklund Olesen700bfad2010-05-27 23:57:25 +00001; RUN: llc < %s -O0 -regalloc=linearscan -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}