[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelLowering.cpp

Evan Cheng evan.cheng at apple.com
Tue Jun 19 16:55:25 PDT 2007



Changes in directory llvm/lib/Target/ARM:

ARMISelLowering.cpp updated: 1.57 -> 1.58
---
Log message:

Be more conservative of duplicating blocks.

---
Diffs of the changes:  (+1 -1)

 ARMISelLowering.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/ARM/ARMISelLowering.cpp
diff -u llvm/lib/Target/ARM/ARMISelLowering.cpp:1.57 llvm/lib/Target/ARM/ARMISelLowering.cpp:1.58
--- llvm/lib/Target/ARM/ARMISelLowering.cpp:1.57	Tue Jun 19 16:05:09 2007
+++ llvm/lib/Target/ARM/ARMISelLowering.cpp	Tue Jun 19 18:55:02 2007
@@ -255,7 +255,7 @@
   setStackPointerRegisterToSaveRestore(ARM::SP);
   setSchedulingPreference(SchedulingForRegPressure);
   setIfCvtBlockSizeLimit(Subtarget->isThumb() ? 0 : 10);
-  setIfCvtDupBlockSizeLimit(Subtarget->isThumb() ? 0 : 3);
+  setIfCvtDupBlockSizeLimit(Subtarget->isThumb() ? 0 : 2);
 
   maxStoresPerMemcpy = 1;   //// temporary - rewrite interface to use type
 }






More information about the llvm-commits mailing list