[llvm-commits] [llvm] r53894 - /llvm/trunk/lib/Target/TargetMachineRegistry.cpp
Dan Gohman
gohman at apple.com
Mon Jul 21 17:52:07 PDT 2008
Author: djg
Date: Mon Jul 21 19:52:04 2008
New Revision: 53894
URL: http://llvm.org/viewvc/llvm-project?rev=53894&view=rev
Log:
Fix a typo in a comment.
Modified:
llvm/trunk/lib/Target/TargetMachineRegistry.cpp
Modified: llvm/trunk/lib/Target/TargetMachineRegistry.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/TargetMachineRegistry.cpp?rev=53894&r1=53893&r2=53894&view=diff
==============================================================================
--- llvm/trunk/lib/Target/TargetMachineRegistry.cpp (original)
+++ llvm/trunk/lib/Target/TargetMachineRegistry.cpp Mon Jul 21 19:52:04 2008
@@ -42,7 +42,7 @@
} 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){
More information about the llvm-commits
mailing list