revert previous patch

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31411 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2006-11-03 03:08:28 +00:00
parent 7fc033a24d
commit f05696c1b5

View File

@ -18,7 +18,6 @@
#include "llvm/Module.h"
#include "llvm/PassManager.h"
#include "llvm/Target/TargetMachineRegistry.h"
#include "llvm/Transforms/Scalar.h"
using namespace llvm;
namespace {
@ -52,7 +51,6 @@ unsigned ARMTargetMachine::getModuleMatchQuality(const Module &M) {
// Pass Pipeline Configuration
bool ARMTargetMachine::addInstSelector(FunctionPassManager &PM, bool Fast) {
PM.add(createCFGSimplificationPass());
PM.add(createARMISelDag(*this));
return false;
}