Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Tue, 12 Jan 2010 04:30:26 +0000 (04:30 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 12 Jan 2010 04:30:26 +0000 (04:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93227 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/FastISel.cpp

index e10cf82c81304e86c8293850f9000a275bbbb2d8..8bc95d3d440b34fe221930a8355e3c739221d297 100644 (file)
@@ -78,7 +78,7 @@ unsigned FastISel::getRegForValue(Value *V) {
   // Look up the value to see if we already have a register for it. We
   // cache values defined by Instructions across blocks, and other values
   // only locally. This is because Instructions already have the SSA
-  // def-dominatess-use requirement enforced.
+  // def-dominates-use requirement enforced.
   if (ValueMap.count(V))
     return ValueMap[V];
   unsigned Reg = LocalValueMap[V];