summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-03-07 22:48:16 +0000
committerEric Christopher <echristo@apple.com>2011-03-07 22:48:16 +0000
commitd756eceb83fc9a7536f76adfe24cdb19d4c2f253 (patch)
tree8741a252cf29d1a17d10aaf68e65b886c3f6ac8f /include
parentcd77a50e638be5e7153ebe2a8ba875de7df48bea (diff)
downloadllvm-d756eceb83fc9a7536f76adfe24cdb19d4c2f253.tar.gz
llvm-d756eceb83fc9a7536f76adfe24cdb19d4c2f253.tar.bz2
llvm-d756eceb83fc9a7536f76adfe24cdb19d4c2f253.tar.xz
Typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/ScheduleDAG.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/ScheduleDAG.h b/include/llvm/CodeGen/ScheduleDAG.h
index 3864ffd50a..a303dbbec0 100644
--- a/include/llvm/CodeGen/ScheduleDAG.h
+++ b/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();