From: Evan Cheng Date: Fri, 1 Jun 2007 08:28:59 +0000 (+0000) Subject: Set ARM ifcvt duplication limit to 3 for now. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=144fd1ff0f1548ec9c4e835dec19ac2d5e46e902;p=oota-llvm.git Set ARM ifcvt duplication limit to 3 for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37385 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp index 92da57a013f..aeaa7e3f4ea 100644 --- a/lib/Target/ARM/ARMISelLowering.cpp +++ b/lib/Target/ARM/ARMISelLowering.cpp @@ -255,6 +255,7 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setStackPointerRegisterToSaveRestore(ARM::SP); setSchedulingPreference(SchedulingForRegPressure); setIfCvtBlockSizeLimit(Subtarget->isThumb() ? 0 : 10); + setIfCvtDupBlockSizeLimit(Subtarget->isThumb() ? 0 : 3); maxStoresPerMemcpy = 1; //// temporary - rewrite interface to use type }