blob: b73187c055d2efa5190bb0b0f61713131bb29bea [file] [log] [blame]
Chris Lattner9f0705c2008-03-08 23:43:36 +00001; RUN: llvm-as < %s | llc -march=x86-64 | grep movd | count 1
Chris Lattner5be9c272008-03-09 00:30:06 +00002; RUN: llvm-as < %s | llc -march=x86-64 | grep {punpcklqdq.*%xmm0, %xmm0}
Chris Lattner9f0705c2008-03-08 23:43:36 +00003
4define <2 x i64> @test3(i64 %A) {
5entry:
6 %B = insertelement <2 x i64> undef, i64 %A, i32 1
7 ret <2 x i64> %B
8}
9