Fix the comment for getClosestTargetForJIT to reflect the fact that

it does not have a Module parameter.

llvm-svn: 40590
This commit is contained in:
Dan Gohman 2007-07-30 14:58:59 +00:00
parent e379f08b19
commit 55360dacd4
2 changed files with 6 additions and 8 deletions

View File

@ -36,10 +36,9 @@ namespace llvm {
static const Entry *getClosestStaticTargetForModule(const Module &M,
std::string &Error);
/// getClosestTargetForJIT - Given an LLVM module, pick the best target that
/// is compatible with the current host and the specified module. If no
/// close target can be found, this returns null and sets the Error string
/// to a reason.
/// getClosestTargetForJIT - Pick the best target that is compatible with
/// the current host. If no close target can be found, this returns null
/// and sets the Error string to a reason.
static const Entry *getClosestTargetForJIT(std::string &Error);

View File

@ -75,10 +75,9 @@ TargetMachineRegistry::getClosestStaticTargetForModule(const Module &M,
return UsableTargets.back().second;
}
/// getClosestTargetForJIT - Given an LLVM module, pick the best target that
/// is compatible with the current host and the specified module. If no
/// close target can be found, this returns null and sets the Error string
/// to a reason.
/// getClosestTargetForJIT - Pick the best target that is compatible with
/// the current host. If no close target can be found, this returns null
/// and sets the Error string to a reason.
const TargetMachineRegistry::Entry *
TargetMachineRegistry::getClosestTargetForJIT(std::string &Error) {
std::vector<std::pair<unsigned, const Entry *> > UsableTargets;