diff options
Diffstat (limited to 'llvm/test/Transforms/InstSimplify/shift.ll')
-rw-r--r-- | llvm/test/Transforms/InstSimplify/shift.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/Transforms/InstSimplify/shift.ll b/llvm/test/Transforms/InstSimplify/shift.ll index 87b3e8227c2..fe20939a3fa 100644 --- a/llvm/test/Transforms/InstSimplify/shift.ll +++ b/llvm/test/Transforms/InstSimplify/shift.ll @@ -19,8 +19,7 @@ define i41 @shl_0(i41 %X) { define <2 x i41> @shl_0_vec_undef_elt(<2 x i41> %X) { ; CHECK-LABEL: @shl_0_vec_undef_elt( -; CHECK-NEXT: [[B:%.*]] = shl <2 x i41> <i41 0, i41 undef>, [[X:%.*]] -; CHECK-NEXT: ret <2 x i41> [[B]] +; CHECK-NEXT: ret <2 x i41> zeroinitializer ; %B = shl <2 x i41> <i41 0, i41 undef>, %X ret <2 x i41> %B @@ -44,8 +43,7 @@ define i39 @ashr_0(i39 %X) { define <2 x i141> @ashr_0_vec_undef_elt(<2 x i141> %X) { ; CHECK-LABEL: @ashr_0_vec_undef_elt( -; CHECK-NEXT: [[B:%.*]] = shl <2 x i141> <i141 undef, i141 0>, [[X:%.*]] -; CHECK-NEXT: ret <2 x i141> [[B]] +; CHECK-NEXT: ret <2 x i141> zeroinitializer ; %B = shl <2 x i141> <i141 undef, i141 0>, %X ret <2 x i141> %B |