Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Tue, 22 Jul 2008 00:52:04 +0000 (00:52 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 22 Jul 2008 00:52:04 +0000 (00:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53894 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetMachineRegistry.cpp

index 62c76bbc5bf14ed2c93e71a7b1ccf1b2880adad1..72e5401422c32c4163ad4fad3818d9f35ad3410f 100644 (file)
@@ -42,7 +42,7 @@ TargetMachineRegistry::getClosestStaticTargetForModule(const Module &M,
   } else if (UsableTargets.size() == 1)
     return UsableTargets.back().second;
 
-  // Otherwise, take the best target, but make sure we don't have to equally
+  // Otherwise, take the best target, but make sure we don't have two equally
   // good best targets.
   std::sort(UsableTargets.begin(), UsableTargets.end());
   if (UsableTargets.back().first ==UsableTargets[UsableTargets.size()-2].first){