Match the (much shorter) name used in various legalization methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@352056
91177308-0d34-0410-b5e6-
96231b3b80d8
/// Method for building the DAG expansion of ISD::SMULFIX. This method accepts
/// integers as its arguments.
- SDValue getExpandedFixedPointMultiplication(SDNode *Node,
- SelectionDAG &DAG) const;
+ SDValue expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const;
//===--------------------------------------------------------------------===//
// Instruction Emitting Hooks
Results.push_back(TLI.expandAddSubSat(Node, DAG));
break;
case ISD::SMULFIX:
- Results.push_back(TLI.getExpandedFixedPointMultiplication(Node, DAG));
+ Results.push_back(TLI.expandFixedPointMul(Node, DAG));
break;
case ISD::SADDO:
case ISD::SSUBO: {
}
SDValue
-TargetLowering::getExpandedFixedPointMultiplication(SDNode *Node,
- SelectionDAG &DAG) const {
+TargetLowering::expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const {
assert(Node->getOpcode() == ISD::SMULFIX && "Expected opcode to be SMULFIX.");
assert(Node->getNumOperands() == 3 &&
"Expected signed fixed point multiplication to have 3 operands.");