Try to make these tests more portable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164320 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng
2012-09-20 21:35:21 +00:00
parent 902ba576fd
commit 2dad6b501b
3 changed files with 7 additions and 7 deletions

View File

@@ -12,10 +12,10 @@ define void @PR13378() nounwind {
; CHECK-NEXT: vst1.32
entry:
%0 = load <4 x float>* undef
store <4 x float> zeroinitializer, <4 x float>* undef
store <4 x float> %0, <4 x float>* undef
%0 = load <4 x float>* undef, align 4
store <4 x float> zeroinitializer, <4 x float>* undef, align 4
store <4 x float> %0, <4 x float>* undef, align 4
%1 = insertelement <4 x float> %0, float 1.000000e+00, i32 3
store <4 x float> %1, <4 x float>* undef
store <4 x float> %1, <4 x float>* undef, align 4
unreachable
}