From c3976de390c0115fd377d7a45d2cc969e0438306 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 24 Jun 2010 19:10:14 +0000 Subject: [PATCH] Oops. IT block formation pass needs to be run at any optimization level. llvm-svn: 106775 --- lib/Target/ARM/ARMTargetMachine.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/Target/ARM/ARMTargetMachine.cpp b/lib/Target/ARM/ARMTargetMachine.cpp index e69349de724..f67ba73d194 100644 --- a/lib/Target/ARM/ARMTargetMachine.cpp +++ b/lib/Target/ARM/ARMTargetMachine.cpp @@ -105,8 +105,7 @@ bool ARMBaseTargetMachine::addPreRegAlloc(PassManagerBase &PM, if (OptLevel != CodeGenOpt::None && !Subtarget.isThumb1Only()) PM.add(createARMLoadStoreOptimizationPass(true)); - if (OptLevel != CodeGenOpt::None && Subtarget.isThumb2() && - EarlyITBlockFormation) + if (Subtarget.isThumb2() && EarlyITBlockFormation) PM.add(createThumb2ITBlockPass(true)); return true; } @@ -128,9 +127,9 @@ bool ARMBaseTargetMachine::addPreSched2(PassManagerBase &PM, if (OptLevel != CodeGenOpt::None) { if (!Subtarget.isThumb1Only()) PM.add(createIfConverterPass()); - if (Subtarget.isThumb2()) - PM.add(createThumb2ITBlockPass()); } + if (Subtarget.isThumb2()) + PM.add(createThumb2ITBlockPass()); return true; }