mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-06 01:24:35 +00:00
Update to latest spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1341,7 +1341,7 @@ protected:
|
|||||||
/// for new code.
|
/// for new code.
|
||||||
SDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops, unsigned NumOps)
|
SDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops, unsigned NumOps)
|
||||||
: NodeType(Opc), OperandsNeedDelete(true), SubclassData(0),
|
: NodeType(Opc), OperandsNeedDelete(true), SubclassData(0),
|
||||||
NodeId(-1), debugLoc(DebugLoc::getNoDebugLoc()),
|
NodeId(-1), debugLoc(DebugLoc::getUnknownLoc()),
|
||||||
OperandList(NumOps ? new SDUse[NumOps] : 0),
|
OperandList(NumOps ? new SDUse[NumOps] : 0),
|
||||||
ValueList(VTs.VTs),
|
ValueList(VTs.VTs),
|
||||||
NumOperands(NumOps), NumValues(VTs.NumVTs),
|
NumOperands(NumOps), NumValues(VTs.NumVTs),
|
||||||
@ -1356,7 +1356,7 @@ protected:
|
|||||||
/// set later with InitOperands.
|
/// set later with InitOperands.
|
||||||
SDNode(unsigned Opc, SDVTList VTs)
|
SDNode(unsigned Opc, SDVTList VTs)
|
||||||
: NodeType(Opc), OperandsNeedDelete(false), SubclassData(0),
|
: NodeType(Opc), OperandsNeedDelete(false), SubclassData(0),
|
||||||
NodeId(-1), debugLoc(DebugLoc::getNoDebugLoc()), OperandList(0),
|
NodeId(-1), debugLoc(DebugLoc::getUnknownLoc()), OperandList(0),
|
||||||
ValueList(VTs.VTs), NumOperands(0), NumValues(VTs.NumVTs),
|
ValueList(VTs.VTs), NumOperands(0), NumValues(VTs.NumVTs),
|
||||||
UseList(NULL) {}
|
UseList(NULL) {}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user