projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f703ec
)
Be more conservative of duplicating blocks.
author
Evan Cheng
<evan.cheng@apple.com>
Tue, 19 Jun 2007 23:55:02 +0000
(23:55 +0000)
committer
Evan Cheng
<evan.cheng@apple.com>
Tue, 19 Jun 2007 23:55:02 +0000
(23:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37669
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/ARMISelLowering.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/ARMISelLowering.cpp
b/lib/Target/ARM/ARMISelLowering.cpp
index 0f82ce5f457064d5e6c25f4009c11c4d7f71b4e2..e371714beb3c5579b0382e426f96f0a60a2ba5d0 100644
(file)
--- a/
lib/Target/ARM/ARMISelLowering.cpp
+++ b/
lib/Target/ARM/ARMISelLowering.cpp
@@
-255,7
+255,7
@@
ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
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
}