mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
Fix a coding style nit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169776 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9e81a440f5
commit
9171fb9cfb
@ -1753,9 +1753,9 @@ public:
|
||||
SDValue BuildExactSDIV(SDValue Op1, SDValue Op2, DebugLoc dl,
|
||||
SelectionDAG &DAG) const;
|
||||
SDValue BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
|
||||
std::vector<SDNode*>* Created) const;
|
||||
std::vector<SDNode*> *Created) const;
|
||||
SDValue BuildUDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
|
||||
std::vector<SDNode*>* Created) const;
|
||||
std::vector<SDNode*> *Created) const;
|
||||
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
@ -3324,7 +3324,7 @@ SDValue TargetLowering::BuildExactSDIV(SDValue Op1, SDValue Op2, DebugLoc dl,
|
||||
/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
|
||||
SDValue TargetLowering::
|
||||
BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
|
||||
std::vector<SDNode*>* Created) const {
|
||||
std::vector<SDNode*> *Created) const {
|
||||
EVT VT = N->getValueType(0);
|
||||
DebugLoc dl= N->getDebugLoc();
|
||||
|
||||
@ -3384,7 +3384,7 @@ BuildSDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
|
||||
/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
|
||||
SDValue TargetLowering::
|
||||
BuildUDIV(SDNode *N, SelectionDAG &DAG, bool IsAfterLegalization,
|
||||
std::vector<SDNode*>* Created) const {
|
||||
std::vector<SDNode*> *Created) const {
|
||||
EVT VT = N->getValueType(0);
|
||||
DebugLoc dl = N->getDebugLoc();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user