mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-22 20:20:03 +00:00
Fix the comment for getClosestTargetForJIT to reflect the fact that
it does not have a Module parameter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40590 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f452207d20
commit
fb71d38247
@ -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);
|
||||
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user