From 3659e8c95c83c17bd648910a317b66e87cc5631f Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sat, 10 Feb 2018 15:14:00 +0000 Subject: [PATCH] [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 --- llvm/test/CodeGen/ARM/2013-07-29-vector-or-combine.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/ARM/2013-07-29-vector-or-combine.ll b/llvm/test/CodeGen/ARM/2013-07-29-vector-or-combine.ll index 979df3072fbf..f611c934617d 100644 --- a/llvm/test/CodeGen/ARM/2013-07-29-vector-or-combine.ll +++ b/llvm/test/CodeGen/ARM/2013-07-29-vector-or-combine.ll @@ -21,7 +21,7 @@ vector.body: %0 = and <4 x i32> %wide.load, %1 = sub <4 x i32> %wide.load, zeroinitializer %2 = and <4 x i32> %1, - %3 = or <4 x i32> undef, %0 + %3 = or <4 x i32> %0, %4 = or <4 x i32> %3, %2 store <4 x i32> %4, <4 x i32>* undef, align 4 br label %vector.body