diff options
-rw-r--r-- | tools/llc/llc.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 6f6ab2ade6..7626e03c4e 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -9,7 +9,6 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Transforms/Instrumentation/TraceValues.h" #include "llvm/Transforms/ChangeAllocations.h" -#include "llvm/Transforms/HoistPHIConstants.h" #include "llvm/Transforms/Scalar/DecomposeMultiDimRefs.h" #include "llvm/Assembly/PrintModulePass.h" #include "llvm/Bytecode/WriteBytecodePass.h" @@ -79,9 +78,6 @@ int main(int argc, char **argv) { // Build up all of the passes that we want to do to the module... PassManager Passes; - // Hoist constants out of PHI nodes into predecessor BB's - Passes.add(createHoistPHIConstantsPass()); - if (TraceValues != TraceOff) { // If tracing enabled... // Insert trace code in all functions in the module if (TraceValues == TraceBasicBlocks) |