blob: fc86853e10fd2de3a7dfe79cbfcffc611c026fe2 [file] [log] [blame]
Evan Cheng40ee6e52008-05-08 00:57:18 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movq
Evan Chenge9b9c672008-05-09 21:53:03 +00002; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep mov | count 1
Evan Cheng40ee6e52008-05-08 00:57:18 +00003; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+sse2 | grep movd
4
5define <2 x i64> @t1(i64 %x) nounwind {
6 %tmp8 = insertelement <2 x i64> zeroinitializer, i64 %x, i32 0
7 ret <2 x i64> %tmp8
8}