Use the -stack-alignment option instead of using a target triple
[oota-llvm.git] / test / CodeGen / X86 / mmx-insert-element.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+mmx | not grep movq
2 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+mmx | grep psllq
3
4 define <2 x i32> @qux(i32 %A) nounwind {
5         %tmp3 = insertelement <2 x i32> < i32 0, i32 undef >, i32 %A, i32 1             ; <<2 x i32>> [#uses=1]
6         ret <2 x i32> %tmp3
7 }