[llvm-commits] [llvm] r127186 - /llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h

Eric Christopher echristo at apple.com
Mon Mar 7 14:48:16 PST 2011


Author: echristo
Date: Mon Mar  7 16:48:16 2011
New Revision: 127186

URL: http://llvm.org/viewvc/llvm-project?rev=127186&view=rev
Log:
Typos.

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

Modified: llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h?rev=127186&r1=127185&r2=127186&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ScheduleDAG.h Mon Mar  7 16:48:16 2011
@@ -356,7 +356,7 @@
     void removePred(const SDep &D);
 
     /// getDepth - Return the depth of this node, which is the length of the
-    /// maximum path up to any node with has no predecessors.
+    /// maximum path up to any node which has no predecessors.
     unsigned getDepth() const {
       if (!isDepthCurrent)
         const_cast<SUnit *>(this)->ComputeDepth();
@@ -364,7 +364,7 @@
     }
 
     /// getHeight - Return the height of this node, which is the length of the
-    /// maximum path down to any node with has no successors.
+    /// maximum path down to any node which has no successors.
     unsigned getHeight() const {
       if (!isHeightCurrent)
         const_cast<SUnit *>(this)->ComputeHeight();





More information about the llvm-commits mailing list