diff options
author | Devang Patel <dpatel@apple.com> | 2007-03-27 00:16:08 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-03-27 00:16:08 +0000 |
commit | 40d2cd13a59f66581773e235ca6fbe383f6e68ac (patch) | |
tree | e1f967bb3c751016b6dc1d168d041b461a5aa08e | |
parent | 6eb0d99f5fc729e5e2fd91fbc8a27c1f8d79a270 (diff) |
Spell check.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35374 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Dominators.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp index 7019c98d89..2d222adc56 100644 --- a/lib/VMCore/Dominators.cpp +++ b/lib/VMCore/Dominators.cpp @@ -266,7 +266,7 @@ bool DominatorSetBase::dominates(Instruction *A, Instruction *B) const { BasicBlock *BBA = A->getParent(), *BBB = B->getParent(); if (BBA != BBB) return dominates(BBA, BBB); - // It is not possible to determie dominance between two PHI nodes + // It is not possible to determine dominance between two PHI nodes // based on their ordering. if (isa<PHINode>(A) && isa<PHINode>(B)) return false; |