blob: 601690ef7cabb04b0f13f7681f0387b01f51bba0 [file] [log] [blame]
Evan Cheng77f0b7a2008-05-13 08:35:03 +00001; RUN: llvm-as %s -o - | llc -march=x86 -mattr=+sse2 -mcpu=yonah | not grep movd
Dan Gohmane7f5be72009-02-02 22:50:08 +00002; RUN: llvm-as %s -o - | llc -march=x86-64 -mattr=+sse2 -mcpu=core2 | not grep movd
Evan Cheng77f0b7a2008-05-13 08:35:03 +00003
4define i32 @t(<2 x i64>* %val) nounwind {
5 %tmp2 = load <2 x i64>* %val, align 16 ; <<2 x i64>> [#uses=1]
6 %tmp3 = bitcast <2 x i64> %tmp2 to <4 x i32> ; <<4 x i32>> [#uses=1]
7 %tmp4 = extractelement <4 x i32> %tmp3, i32 2 ; <i32> [#uses=1]
8 ret i32 %tmp4
9}