diff options
| author | Dan Gohman <gohman@apple.com> | 2008-07-22 00:52:04 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-07-22 00:52:04 +0000 |
| commit | e343021fbda0e710bb8f2ee287d8dbc48d36f8f7 (patch) | |
| tree | 1c9795257a2c35a89eba3b6f6ba5632b4644c679 | |
| parent | 98f6e582f2f03500d9830287225fa5e1b09657f0 (diff) | |
| download | bcm5719-llvm-e343021fbda0e710bb8f2ee287d8dbc48d36f8f7.tar.gz bcm5719-llvm-e343021fbda0e710bb8f2ee287d8dbc48d36f8f7.zip | |
Fix a typo in a comment.
llvm-svn: 53894
| -rw-r--r-- | llvm/lib/Target/TargetMachineRegistry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/TargetMachineRegistry.cpp b/llvm/lib/Target/TargetMachineRegistry.cpp index 62c76bbc5bf..72e5401422c 100644 --- a/llvm/lib/Target/TargetMachineRegistry.cpp +++ b/llvm/lib/Target/TargetMachineRegistry.cpp @@ -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){ |

