blob: 18850b135ccf57dc74e8a2a80327d976e100e8ab [file] [log] [blame]
Evan Chengefbb65e2008-05-06 07:23:50 +00001; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin -mattr=+mmx | grep {movd %rsi, %mm0}
2; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin -mattr=+mmx | grep {movd %rdi, %mm1}
3; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin -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()