diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-13 16:41:26 +0000 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-13 16:41:26 +0000 |
commit | 0400e504459fa4a1583c46411f17ec94097e3d61 (patch) | |
tree | 0e5c3d8aed8082bc0ac7c1b4792c08bfd6c20670 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | c0044118c8ec4889ff1490179d5d70549cb7621c (diff) | |
download | bcm5719-llvm-0400e504459fa4a1583c46411f17ec94097e3d61.tar.gz bcm5719-llvm-0400e504459fa4a1583c46411f17ec94097e3d61.zip |
[X86] Rename overly verbose method; NFC
As suggested on D56636.
llvm-svn: 351021
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 0175bcd7339..3c757440367 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -5275,8 +5275,7 @@ SDValue TargetLowering::lowerCmpEqZeroToCtlzSrl(SDValue Op, return SDValue(); } -SDValue TargetLowering::getExpandedSaturationAdditionSubtraction( - SDNode *Node, SelectionDAG &DAG) const { +SDValue TargetLowering::expandAddSubSat(SDNode *Node, SelectionDAG &DAG) const { unsigned Opcode = Node->getOpcode(); unsigned OverflowOp; switch (Opcode) { |