aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrathamesh Kulkarni <prathamesh.kulkarni@linaro.org>2016-04-27 22:39:43 +0000
committerPrathamesh Kulkarni <prathamesh3492@gcc.gnu.org>2016-04-27 22:39:43 +0000
commit4245b0871ca60249982048731687d5c95c10cb91 (patch)
tree5fe08d6a6cb9966881fc750d2f1f46945e922f90
parent3563f78f97c4c1e1738cbd159b12d65f57c13bfb (diff)
downloadgcc-4245b0871ca60249982048731687d5c95c10cb91.zip
gcc-4245b0871ca60249982048731687d5c95c10cb91.tar.gz
gcc-4245b0871ca60249982048731687d5c95c10cb91.tar.bz2
params.def (MIN_PARTITION_SIZE): Set default value to 10000.
2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> * params.def (MIN_PARTITION_SIZE): Set default value to 10000. From-SVN: r235538
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/params.def2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5fd8bec8..91e4b046 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2016-04-27 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
+
+ * params.def (MIN_PARTITION_SIZE): Set default value to 10000.
+
2016-04-27 Marc Glisse <marc.glisse@inria.fr>
* match.pd (A - B > A, A + B < A): New transformations.
diff --git a/gcc/params.def b/gcc/params.def
index eceee32..9e05401 100644
--- a/gcc/params.def
+++ b/gcc/params.def
@@ -1027,7 +1027,7 @@ DEFPARAM (PARAM_LTO_PARTITIONS,
DEFPARAM (MIN_PARTITION_SIZE,
"lto-min-partition",
"Minimal size of a partition for LTO (in estimated instructions).",
- 1000, 0, 0)
+ 10000, 0, 0)
DEFPARAM (MAX_PARTITION_SIZE,
"lto-max-partition",