Spell check.

llvm-svn: 35374
This commit is contained in:
Devang Patel 2007-03-27 00:16:08 +00:00
parent 54d5b1b8f8
commit 2850c677af
1 changed files with 1 additions and 1 deletions

View File

@ -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;