[ARM] preserve test intent by removing undef

D43141 proposes to correct undef folding in the DAG,
and this test would not survive that change.

llvm-svn: 324814
This commit is contained in:
Sanjay Patel 2018-02-10 15:14:00 +00:00
parent dd94785848
commit 3659e8c95c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ vector.body:
%0 = and <4 x i32> %wide.load, <i32 -16711936, i32 -16711936, i32 -16711936, i32 -16711936>
%1 = sub <4 x i32> %wide.load, zeroinitializer
%2 = and <4 x i32> %1, <i32 16711680, i32 16711680, i32 16711680, i32 16711680>
%3 = or <4 x i32> undef, %0
%3 = or <4 x i32> %0, <i32 1, i32 2, i32 3, i32 4>
%4 = or <4 x i32> %3, %2
store <4 x i32> %4, <4 x i32>* undef, align 4
br label %vector.body