mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-13 15:11:39 +00:00
Work around downrev gccs which do not inherit visibility of the
Registry<>::iterator member class. llvm-svn: 43122
This commit is contained in:
parent
422d66e53e
commit
3b309c68d1
@ -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…
x
Reference in New Issue
Block a user