forked from OSchip/llvm-project
[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:
parent
dd94785848
commit
3659e8c95c
llvm/test/CodeGen/ARM
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue