Spell check.
authorDevang Patel <dpatel@apple.com>
Tue, 27 Mar 2007 00:16:08 +0000 (00:16 +0000)
committerDevang Patel <dpatel@apple.com>
Tue, 27 Mar 2007 00:16:08 +0000 (00:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35374 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Dominators.cpp

index 7019c98d89e1384fe1fa11d66a08f83656b0a3ff..2d222adc56a0571ae273639474f81897b3a50e01 100644 (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;