[llvm-commits] [llvm] r63138 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Dale Johannesen dalej at apple.com
Tue Jan 27 14:09:11 PST 2009


Author: johannes
Date: Tue Jan 27 16:09:11 2009
New Revision: 63138

URL: http://llvm.org/viewvc/llvm-project?rev=63138&view=rev
Log:
Update to latest spelling.


Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=63138&r1=63137&r2=63138&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Tue Jan 27 16:09:11 2009
@@ -1341,7 +1341,7 @@
   /// 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 @@
   /// 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) {}
 





More information about the llvm-commits mailing list