1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Speculatively redisable IPSCCP, I think its still breaking things.

llvm-svn: 85884
This commit is contained in:
Daniel Dunbar 2009-11-03 07:49:22 +00:00
parent 3d3f9b9c83
commit b5c7546aaf

View File

@ -99,7 +99,8 @@ namespace llvm {
if (UnitAtATime) {
PM->add(createGlobalOptimizerPass()); // Optimize out global vars
PM->add(createIPSCCPPass()); // IP SCCP
PM->add(createIPConstantPropagationPass()); // IP CP
// PM->add(createIPSCCPPass()); // IP SCCP
PM->add(createDeadArgEliminationPass()); // Dead argument elimination
}
PM->add(createInstructionCombiningPass()); // Clean up after IPCP & DAE