From 478a83c90524c4ccafe620a4d536853b519b503d Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Sat, 21 Jan 2017 17:59:59 +0000 Subject: [InstCombine] use m_APInt to allow ashr folds for vectors with splat constants We may be able to assert that no shl-shl or lshr-lshr pairs ever get here because we should have already handled those in foldShiftedShift(). llvm-svn: 292726 --- llvm/test/Transforms/InstCombine/shift-sra.ll | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'llvm/test/Transforms') diff --git a/llvm/test/Transforms/InstCombine/shift-sra.ll b/llvm/test/Transforms/InstCombine/shift-sra.ll index 1d6f79f54b1..4483e60b506 100644 --- a/llvm/test/Transforms/InstCombine/shift-sra.ll +++ b/llvm/test/Transforms/InstCombine/shift-sra.ll @@ -139,13 +139,11 @@ define i32 @ashr_overshift(i32 %x) { ret i32 %sh2 } -; FIXME: ; (X >>s C1) >>s C2 --> X >>s (C1 + C2) define <2 x i32> @ashr_ashr_splat_vec(<2 x i32> %x) { ; CHECK-LABEL: @ashr_ashr_splat_vec( -; CHECK-NEXT: [[SH1:%.*]] = ashr <2 x i32> %x, -; CHECK-NEXT: [[SH2:%.*]] = ashr <2 x i32> [[SH1]], +; CHECK-NEXT: [[SH2:%.*]] = ashr <2 x i32> %x, ; CHECK-NEXT: ret <2 x i32> [[SH2]] ; %sh1 = ashr <2 x i32> %x, @@ -153,13 +151,11 @@ define <2 x i32> @ashr_ashr_splat_vec(<2 x i32> %x) { ret <2 x i32> %sh2 } -; FIXME: ; (X >>s C1) >>s C2 --> X >>s (Bitwidth - 1) define <2 x i32> @ashr_overshift_splat_vec(<2 x i32> %x) { ; CHECK-LABEL: @ashr_overshift_splat_vec( -; CHECK-NEXT: [[SH1:%.*]] = ashr <2 x i32> %x, -; CHECK-NEXT: [[SH2:%.*]] = ashr <2 x i32> [[SH1]], +; CHECK-NEXT: [[SH2:%.*]] = ashr <2 x i32> %x, ; CHECK-NEXT: ret <2 x i32> [[SH2]] ; %sh1 = ashr <2 x i32> %x, -- cgit v1.2.3