diff options
author | David Majnemer <david.majnemer@gmail.com> | 2013-06-08 23:51:45 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2013-06-08 23:51:45 +0000 |
commit | 0fc8670cb09564a48efe1afc0e6335f904a4c887 (patch) | |
tree | ec264574b2f9f07c884ee80369adbdec5ac4dae6 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 9dd08d912d7466ecd8b1923cd861010cbad51ff3 (diff) | |
download | bcm5719-llvm-0fc8670cb09564a48efe1afc0e6335f904a4c887.tar.gz bcm5719-llvm-0fc8670cb09564a48efe1afc0e6335f904a4c887.zip |
TargetLowering: Clean up method description comments
llvm-svn: 183623
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index cbd26d3ceb3..f02e3d6d2eb 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -2438,7 +2438,7 @@ void TargetLowering::ComputeConstraintToUse(AsmOperandInfo &OpInfo, } } -/// BuildExactDiv - Given an exact SDIV by a constant, create a multiplication +/// \brief Given an exact SDIV by a constant, create a multiplication /// with the multiplicative inverse of the constant. SDValue TargetLowering::BuildExactSDIV(SDValue Op1, SDValue Op2, SDLoc dl, SelectionDAG &DAG) const { @@ -2464,7 +2464,7 @@ SDValue TargetLowering::BuildExactSDIV(SDValue Op1, SDValue Op2, SDLoc dl, return DAG.getNode(ISD::MUL, dl, Op1.getValueType(), Op1, Op2); } -/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant, +/// \brief Given an ISD::SDIV node expressing a divide by constant, /// return a DAG expression to select that will generate the same value by /// multiplying by a magic number. See: /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> @@ -2524,7 +2524,7 @@ BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization, return DAG.getNode(ISD::ADD, dl, VT, Q, T); } -/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant, +/// \brief Given an ISD::UDIV node expressing a divide by constant, /// return a DAG expression to select that will generate the same value by /// multiplying by a magic number. See: /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |