diff options
author | johannes <johannes@91177308-0d34-0410-b5e6-96231b3b80d8> | 2009-01-27 22:09:11 +0000 |
---|---|---|
committer | johannes <johannes@91177308-0d34-0410-b5e6-96231b3b80d8> | 2009-01-27 22:09:11 +0000 |
commit | 3fe24e11b4b24655883f1b609434a522dce32167 (patch) | |
tree | c44500bf424bad08a7d9d8710e61aa841a5c47c9 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 1d9b80d687b78326c31f507ef57994eb44008303 (diff) | |
download | external_llvm-3fe24e11b4b24655883f1b609434a522dce32167.zip external_llvm-3fe24e11b4b24655883f1b609434a522dce32167.tar.gz external_llvm-3fe24e11b4b24655883f1b609434a522dce32167.tar.bz2 |
Update to latest spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63138 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index f1cd6c0..772ef07 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1341,7 +1341,7 @@ protected: /// for new code. SDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops, unsigned NumOps) : NodeType(Opc), OperandsNeedDelete(true), SubclassData(0), - NodeId(-1), debugLoc(DebugLoc::getNoDebugLoc()), + NodeId(-1), debugLoc(DebugLoc::getUnknownLoc()), OperandList(NumOps ? new SDUse[NumOps] : 0), ValueList(VTs.VTs), NumOperands(NumOps), NumValues(VTs.NumVTs), @@ -1356,7 +1356,7 @@ protected: /// set later with InitOperands. SDNode(unsigned Opc, SDVTList VTs) : 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), UseList(NULL) {} |