forked from OSchip/llvm-project
Work around downrev gccs which do not inherit visibility of the
Registry<>::iterator member class. llvm-svn: 43122
This commit is contained in:
parent
03368e85b8
commit
ea31de8dc1
|
@ -32,7 +32,7 @@ const TargetMachineRegistry::entry *
|
|||
TargetMachineRegistry::getClosestStaticTargetForModule(const Module &M,
|
||||
std::string &Error) {
|
||||
std::vector<std::pair<unsigned, const entry *> > UsableTargets;
|
||||
for (iterator I = begin(), E = end(); I != E; ++I)
|
||||
for (Registry<TargetMachine>::iterator I = begin(), E = end(); I != E; ++I)
|
||||
if (unsigned Qual = I->ModuleMatchQualityFn(M))
|
||||
UsableTargets.push_back(std::make_pair(Qual, &*I));
|
||||
|
||||
|
@ -60,7 +60,7 @@ TargetMachineRegistry::getClosestStaticTargetForModule(const Module &M,
|
|||
const TargetMachineRegistry::entry *
|
||||
TargetMachineRegistry::getClosestTargetForJIT(std::string &Error) {
|
||||
std::vector<std::pair<unsigned, const entry *> > UsableTargets;
|
||||
for (iterator I = begin(), E = end(); I != E; ++I)
|
||||
for (Registry<TargetMachine>::iterator I = begin(), E = end(); I != E; ++I)
|
||||
if (unsigned Qual = I->JITMatchQualityFn())
|
||||
UsableTargets.push_back(std::make_pair(Qual, &*I));
|
||||
|
||||
|
|
Loading…
Reference in New Issue