From 487e95777593e264c26b35377b53c703fd535ef3 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Fri, 26 Jul 2019 19:44:53 +0000 Subject: [PATCH] [InstCombine] add tests for fdiv with negated operand; NFC llvm-svn: 367145 --- llvm/test/Transforms/InstCombine/fdiv.ll | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/llvm/test/Transforms/InstCombine/fdiv.ll b/llvm/test/Transforms/InstCombine/fdiv.ll index 619554e..62ef758 100644 --- a/llvm/test/Transforms/InstCombine/fdiv.ll +++ b/llvm/test/Transforms/InstCombine/fdiv.ll @@ -499,3 +499,38 @@ define <2 x float> @div_constant_dividend3(<2 x float> %x) { ret <2 x float> %t2 } +define double @fdiv_fneg1(double %x, double %y) { +; CHECK-LABEL: @fdiv_fneg1( +; CHECK-NEXT: [[NEG:%.*]] = fsub double -0.000000e+00, [[X:%.*]] +; CHECK-NEXT: [[DIV:%.*]] = fdiv double [[NEG]], [[Y:%.*]] +; CHECK-NEXT: ret double [[DIV]] +; + %neg = fsub double -0.0, %x + %div = fdiv double %neg, %y + ret double %div +} + +define <2 x float> @fdiv_fneg2(<2 x float> %x, <2 x float> %y) { +; CHECK-LABEL: @fdiv_fneg2( +; CHECK-NEXT: [[NEG:%.*]] = fsub <2 x float> , [[X:%.*]] +; CHECK-NEXT: [[DIV:%.*]] = fdiv <2 x float> [[Y:%.*]], [[NEG]] +; CHECK-NEXT: ret <2 x float> [[DIV]] +; + %neg = fsub <2 x float> , %x + %div = fdiv <2 x float> %y, %neg + ret <2 x float> %div +} + +define float @fdiv_fneg1_extra_use(float %x, float %y) { +; CHECK-LABEL: @fdiv_fneg1_extra_use( +; CHECK-NEXT: [[NEG:%.*]] = fsub float -0.000000e+00, [[X:%.*]] +; CHECK-NEXT: call void @use_f32(float [[NEG]]) +; CHECK-NEXT: [[DIV:%.*]] = fdiv float [[NEG]], [[Y:%.*]] +; CHECK-NEXT: ret float [[DIV]] +; + %neg = fsub float -0.0, %x + call void @use_f32(float %neg) + %div = fdiv float %neg, %y + ret float %div +} + -- 2.7.4