diff options
| author | Eric Christopher <echristo@apple.com> | 2011-03-07 22:48:16 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@apple.com> | 2011-03-07 22:48:16 +0000 |
| commit | ac546dc62e32e3b803f9905fab6025c926db7a74 (patch) | |
| tree | 0efceea3398cdc628809bbb200ca80d62c029160 | |
| parent | ec9d2633f12aec93a13bcabf4c1c81ae07da86d6 (diff) | |
| download | bcm5719-llvm-ac546dc62e32e3b803f9905fab6025c926db7a74.tar.gz bcm5719-llvm-ac546dc62e32e3b803f9905fab6025c926db7a74.zip | |
Typos.
llvm-svn: 127186
| -rw-r--r-- | llvm/include/llvm/CodeGen/ScheduleDAG.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/ScheduleDAG.h b/llvm/include/llvm/CodeGen/ScheduleDAG.h index 3864ffd50a1..a303dbbec0f 100644 --- a/llvm/include/llvm/CodeGen/ScheduleDAG.h +++ b/llvm/include/llvm/CodeGen/ScheduleDAG.h @@ -356,7 +356,7 @@ namespace llvm { 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 @@ namespace llvm { } /// 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(); |

