forked from OSchip/llvm-project
parent
37958aa864
commit
d697debebf
|
@ -99,8 +99,7 @@ namespace llvm {
|
||||||
if (UnitAtATime) {
|
if (UnitAtATime) {
|
||||||
PM->add(createGlobalOptimizerPass()); // Optimize out global vars
|
PM->add(createGlobalOptimizerPass()); // Optimize out global vars
|
||||||
|
|
||||||
PM->add(createIPConstantPropagationPass()); // IP CP
|
PM->add(createIPSCCPPass()); // IP SCCP
|
||||||
// PM->add(createIPSCCPPass()); // IP SCCP
|
|
||||||
PM->add(createDeadArgEliminationPass()); // Dead argument elimination
|
PM->add(createDeadArgEliminationPass()); // Dead argument elimination
|
||||||
}
|
}
|
||||||
PM->add(createInstructionCombiningPass()); // Clean up after IPCP & DAE
|
PM->add(createInstructionCombiningPass()); // Clean up after IPCP & DAE
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
// RUN: %llvmgxx %s -O2 -S -o - | FileCheck %s
|
// RUN: %llvmgxx %s -O2 -S -o - | FileCheck %s
|
||||||
// XFAIL: *
|
|
||||||
|
|
||||||
// This test verifies that we get expected codegen out of the -O2 optimization
|
// This test verifies that we get expected codegen out of the -O2 optimization
|
||||||
// level from the full optimizer.
|
// level from the full optimizer.
|
||||||
|
|
Loading…
Reference in New Issue