mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[bugpoint] llvm-gcc doesn't exist anymore ...
... so this comment is stale. Remove it. Range-loopify while here. llvm-svn: 250354
This commit is contained in:
parent
1d3f29342f
commit
eac74efe76
@ -180,19 +180,12 @@ int main(int argc, char **argv) {
|
||||
Builder.Inliner = createFunctionInliningPass(225);
|
||||
else
|
||||
Builder.Inliner = createFunctionInliningPass(275);
|
||||
|
||||
// Note that although clang/llvm-gcc use two separate passmanagers
|
||||
// here, it shouldn't normally make a difference.
|
||||
Builder.populateFunctionPassManager(PM);
|
||||
Builder.populateModulePassManager(PM);
|
||||
}
|
||||
|
||||
for (std::vector<const PassInfo*>::iterator I = PassList.begin(),
|
||||
E = PassList.end();
|
||||
I != E; ++I) {
|
||||
const PassInfo* PI = *I;
|
||||
for (const PassInfo *PI : PassList)
|
||||
D.addPass(PI->getPassArgument());
|
||||
}
|
||||
|
||||
// Bugpoint has the ability of generating a plethora of core files, so to
|
||||
// avoid filling up the disk, we prevent it
|
||||
|
Loading…
Reference in New Issue
Block a user