reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstructionCombining.cpp
  552   bool InnerCommutative = Instruction::isCommutative(InnerOpcode);
  555   if (leftDistributesOverRight(InnerOpcode, TopLevelOpcode))
  569         SimplifiedInst = Builder.CreateBinOp(InnerOpcode, A, V);
  574   if (!SimplifiedInst && rightDistributesOverLeft(TopLevelOpcode, InnerOpcode))
  589         SimplifiedInst = Builder.CreateBinOp(InnerOpcode, V, B);
  618             InnerOpcode == Instruction::Mul) {