OSDN Git Service

[InstCombine] remove unused parameter and add assert; NFC
authorSanjay Patel <spatel@rotateright.com>
Sat, 20 Jun 2020 15:47:00 +0000 (11:47 -0400)
committerSanjay Patel <spatel@rotateright.com>
Sat, 20 Jun 2020 15:47:00 +0000 (11:47 -0400)
llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp

index 5f7e35e..cbbde9a 100644 (file)
@@ -402,10 +402,12 @@ Instruction *InstCombiner::visitMul(BinaryOperator &I) {
   return Changed ? &I : nullptr;
 }
 
-static Instruction *foldFPSignBitOps(BinaryOperator &I,
-                                     InstCombiner::BuilderTy &Builder) {
-  Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
+static Instruction *foldFPSignBitOps(BinaryOperator &I) {
   BinaryOperator::BinaryOps Opcode = I.getOpcode();
+  assert((Opcode == Instruction::FMul || Opcode == Instruction::FDiv) &&
+         "Expected fmul or fdiv");
+
+  Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
   Value *X, *Y;
 
   // -X * -Y --> X * Y
@@ -439,7 +441,7 @@ Instruction *InstCombiner::visitFMul(BinaryOperator &I) {
   if (Value *FoldedMul = foldMulSelectToNegate(I, Builder))
     return replaceInstUsesWith(I, FoldedMul);
 
-  if (Instruction *R = foldFPSignBitOps(I, Builder))
+  if (Instruction *R = foldFPSignBitOps(I))
     return R;
 
   // X * -1.0 --> -X
@@ -1237,7 +1239,7 @@ Instruction *InstCombiner::visitFDiv(BinaryOperator &I) {
   if (Instruction *R = foldFDivConstantDividend(I))
     return R;
 
-  if (Instruction *R = foldFPSignBitOps(I, Builder))
+  if (Instruction *R = foldFPSignBitOps(I))
     return R;
 
   Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);