summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/vector-udiv.ll
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-02-09 10:43:59 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-02-09 10:43:59 +0000
commit9620f4b746c7b3b752ce5013817bd112fe5b721c (patch)
tree38e6f96548baebc0273d56b465ccc283c10b58c8 /llvm/test/Transforms/InstCombine/vector-udiv.ll
parent873aa11dd96cf1bc67983e25095b5479eda8ac10 (diff)
downloadbcm5719-llvm-9620f4b746c7b3b752ce5013817bd112fe5b721c.tar.gz
bcm5719-llvm-9620f4b746c7b3b752ce5013817bd112fe5b721c.zip
[InstCombine] Add constant vector support for X udiv C, where C >= signbit
llvm-svn: 324728
Diffstat (limited to 'llvm/test/Transforms/InstCombine/vector-udiv.ll')
-rw-r--r--llvm/test/Transforms/InstCombine/vector-udiv.ll10
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/test/Transforms/InstCombine/vector-udiv.ll b/llvm/test/Transforms/InstCombine/vector-udiv.ll
index 58d2fece4d7..e16c93265ba 100644
--- a/llvm/test/Transforms/InstCombine/vector-udiv.ll
+++ b/llvm/test/Transforms/InstCombine/vector-udiv.ll
@@ -22,8 +22,9 @@ define <4 x i32> @test_v4i32_const_pow2(<4 x i32> %a0) {
; X udiv C, where C >= signbit
define <4 x i32> @test_v4i32_negconstsplat(<4 x i32> %a0) {
; CHECK-LABEL: @test_v4i32_negconstsplat(
-; CHECK-NEXT: [[TMP1:%.*]] = udiv <4 x i32> [[A0:%.*]], <i32 -3, i32 -3, i32 -3, i32 -3>
-; CHECK-NEXT: ret <4 x i32> [[TMP1]]
+; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <4 x i32> [[A0:%.*]], <i32 -4, i32 -4, i32 -4, i32 -4>
+; CHECK-NEXT: [[TMP2:%.*]] = zext <4 x i1> [[TMP1]] to <4 x i32>
+; CHECK-NEXT: ret <4 x i32> [[TMP2]]
;
%1 = udiv <4 x i32> %a0, <i32 -3, i32 -3, i32 -3, i32 -3>
ret <4 x i32> %1
@@ -31,8 +32,9 @@ define <4 x i32> @test_v4i32_negconstsplat(<4 x i32> %a0) {
define <4 x i32> @test_v4i32_negconst(<4 x i32> %a0) {
; CHECK-LABEL: @test_v4i32_negconst(
-; CHECK-NEXT: [[TMP1:%.*]] = udiv <4 x i32> [[A0:%.*]], <i32 -3, i32 -5, i32 -7, i32 -9>
-; CHECK-NEXT: ret <4 x i32> [[TMP1]]
+; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <4 x i32> [[A0:%.*]], <i32 -4, i32 -6, i32 -8, i32 -10>
+; CHECK-NEXT: [[TMP2:%.*]] = zext <4 x i1> [[TMP1]] to <4 x i32>
+; CHECK-NEXT: ret <4 x i32> [[TMP2]]
;
%1 = udiv <4 x i32> %a0, <i32 -3, i32 -5, i32 -7, i32 -9>
ret <4 x i32> %1
OpenPOWER on IntegriCloud