aboutsummaryrefslogtreecommitdiff
path: root/gcc/params.def
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2012-08-17 07:53:05 +0000
committerRichard Guenther <rguenther@suse.de>2012-08-17 07:53:05 +0000
commit8c37122f2edc7c7ccb5a62b33ed47082c1174699 (patch)
tree482906707c34ebf9f724dcc7e4dd4f3e68d170b9 /gcc/params.def
parent9ecaaa4cf548182c37c514103b70598b9282b798 (diff)
2012-08-17 Richard Guenther <rguenther@suse.de>
* params.def (integer-share-limit): Decrease from 256 to 251, add rationale. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@190470 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.def')
-rw-r--r--gcc/params.def5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/params.def b/gcc/params.def
index efa686061e7..cd8cb22998f 100644
--- a/gcc/params.def
+++ b/gcc/params.def
@@ -638,11 +638,12 @@ DEFPARAM(PARAM_MAX_LAST_VALUE_RTL,
/* INTEGER_CST nodes are shared for values [{-1,0} .. N) for
{signed,unsigned} integral types. This determines N.
- Experimentation shows 256 to be a good value. */
+ Experimentation shows 251 to be a good value that generates the
+ least amount of garbage for allocating the TREE_VEC storage. */
DEFPARAM (PARAM_INTEGER_SHARE_LIMIT,
"integer-share-limit",
"The upper bound for sharing integer constants",
- 256, 2, 2)
+ 251, 2, 2)
DEFPARAM (PARAM_SSP_BUFFER_SIZE,
"ssp-buffer-size",