blob: f909b118bff0f6c77803c3ca69ad255427c09352 [file] [log] [blame]
Dan Gohmanacb09fa2007-11-27 00:03:38 +00001; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+mmx | grep {movd %rsi, %mm0}
2; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+mmx | grep {movd %rdi, %mm1}
Dan Gohman91888f02007-07-31 20:11:57 +00003; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+mmx | grep {paddusw %mm0, %mm1}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00004
5@R = external global <1 x i64> ; <<1 x i64>*> [#uses=1]
6
Chris Lattnerd2dcb092008-05-05 18:24:33 +00007define void @foo(<1 x i64> %A, <1 x i64> %B) nounwind {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008entry:
9 %tmp4 = bitcast <1 x i64> %B to <4 x i16> ; <<4 x i16>> [#uses=1]
10 %tmp6 = bitcast <1 x i64> %A to <4 x i16> ; <<4 x i16>> [#uses=1]
11 %tmp7 = tail call <4 x i16> @llvm.x86.mmx.paddus.w( <4 x i16> %tmp6, <4 x i16> %tmp4 ) ; <<4 x i16>> [#uses=1]
12 %tmp8 = bitcast <4 x i16> %tmp7 to <1 x i64> ; <<1 x i64>> [#uses=1]
13 store <1 x i64> %tmp8, <1 x i64>* @R
14 tail call void @llvm.x86.mmx.emms( )
15 ret void
16}
17
18declare <4 x i16> @llvm.x86.mmx.paddus.w(<4 x i16>, <4 x i16>)
19
20declare void @llvm.x86.mmx.emms()