From e23476a02796e660183fb215d2df2b185173cf50 Mon Sep 17 00:00:00 2001
From: Chris Lattner <sabre@nondot.org>
Date: Tue, 30 Apr 2002 20:53:05 +0000
Subject: [PATCH] Remove unneccesary pass.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2421 91177308-0d34-0410-b5e6-96231b3b80d8
---
 tools/llc/llc.cpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 6f6ab2ade66..7626e03c4e5 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)