diff options
author | Kenneth Zadeck <zadeck@naturalbridge.com> | 2008-05-03 15:53:11 +0000 |
---|---|---|
committer | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2008-05-03 15:53:11 +0000 |
commit | 75643ab17e5a09e28adbb5d99e4b15cc21e445a7 (patch) | |
tree | e16e731b7783ede8042df7a2fde1fed19373cf20 | |
parent | 621b5ed6130e8ec76c8c2b8c2d2411a2d57e7f60 (diff) | |
download | gcc-75643ab17e5a09e28adbb5d99e4b15cc21e445a7.zip gcc-75643ab17e5a09e28adbb5d99e4b15cc21e445a7.tar.gz gcc-75643ab17e5a09e28adbb5d99e4b15cc21e445a7.tar.bz2 |
invoke.texi (max-flow-memory-locations): Removed.
2008-05-03 Kenneth Zadeck <zadeck@naturalbridge.com>
* doc/invoke.texi (max-flow-memory-locations): Removed.
* params.def (PARAM_MAX_FLOW_MEMORY_LOCATIONS): Removed.
From-SVN: r134904
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 4 | ||||
-rw-r--r-- | gcc/params.def | 4 |
3 files changed, 5 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5665dc9..8eaa511 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-05-03 Kenneth Zadeck <zadeck@naturalbridge.com> + + * doc/invoke.texi (max-flow-memory-locations): Removed. + * params.def (PARAM_MAX_FLOW_MEMORY_LOCATIONS): Removed. + 2008-05-03 Richard Guenther <rguenther@suse.de> PR middle-end/34973 diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index dfd22af..c182399 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -7219,10 +7219,6 @@ The maximum number of memory locations cselib should take into account. Increasing values mean more aggressive optimization, making the compile time increase with probably slightly better performance. The default value is 500. -@item max-flow-memory-locations -Similar as @option{max-cselib-memory-locations} but for dataflow liveness. -The default value is 100. - @item reorder-blocks-duplicate @itemx reorder-blocks-duplicate-feedback diff --git a/gcc/params.def b/gcc/params.def index 471b953..ac7bf4f 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -514,10 +514,6 @@ DEFPARAM(PARAM_MAX_CSELIB_MEMORY_LOCATIONS, "max-cselib-memory-locations", "The maximum memory locations recorded by cselib", 500, 0, 0) -DEFPARAM(PARAM_MAX_FLOW_MEMORY_LOCATIONS, - "max-flow-memory-locations", - "The maximum memory locations recorded by flow", - 100, 0, 0) #ifdef ENABLE_GC_ALWAYS_COLLECT # define GGC_MIN_EXPAND_DEFAULT 0 |