mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-17 08:36:52 +00:00
This pass has proven its metal, remove -disable option.
llvm-svn: 15411
This commit is contained in:
parent
41c8b70624
commit
6d1c36b4d4
@ -38,9 +38,6 @@ namespace {
|
||||
cl::opt<bool>
|
||||
DisableOptimizations("disable-opt",
|
||||
cl::desc("Do not run any optimization passes"));
|
||||
cl::opt<bool>
|
||||
DisableGlobalsModRef("disable-globalsmodref", cl::Hidden,
|
||||
cl::desc("Turn on the more aggressive alias analysis"));
|
||||
}
|
||||
|
||||
/// CopyEnv - This function takes an array of environment variables and makes a
|
||||
@ -200,8 +197,7 @@ int llvm::GenerateBytecode(Module *M, bool Strip, bool Internalize,
|
||||
addPass(Passes, createScalarReplAggregatesPass()); // Break up allocas
|
||||
|
||||
// Run a few AA driven optimizations here and now, to cleanup the code.
|
||||
if (!DisableGlobalsModRef)
|
||||
addPass(Passes, createGlobalsModRefPass()); // IP alias analysis
|
||||
addPass(Passes, createGlobalsModRefPass()); // IP alias analysis
|
||||
|
||||
addPass(Passes, createLICMPass()); // Hoist loop invariants
|
||||
addPass(Passes, createLoadValueNumberingPass()); // GVN for load instrs
|
||||
|
Loading…
Reference in New Issue
Block a user