diff options
| author | bosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-27 20:51:41 +0000 |
|---|---|---|
| committer | bosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-27 20:51:41 +0000 |
| commit | e4de0dc0d0fee0f2bda71ba520c28fc7fb18963b (patch) | |
| tree | 7338bd3fd33491378072d282ae33d3083fa22bfb | |
| parent | fb53fc124ddca3e64c9657dbe63c458b737629fa (diff) | |
| download | ppe42-gcc-e4de0dc0d0fee0f2bda71ba520c28fc7fb18963b.tar.gz ppe42-gcc-e4de0dc0d0fee0f2bda71ba520c28fc7fb18963b.zip | |
* toplev.c (print_version): Add indentation for GGC heuristics and
output after printing version information.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63524 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/toplev.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b836d0742a0..65a96ed3b7f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-02-27 Geert Bosch <bosch@gnat.com> + + * toplev.c (print_version): Add indentation for GGC heuristics and + output after printing version information. + 2003-02-27 James E Wilson <wilson@tuliptree.org> * combine.c (simplify_comparison): Require integral mode when diff --git a/gcc/toplev.c b/gcc/toplev.c index ae068d43472..b90edcba5a8 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4647,8 +4647,6 @@ print_version (file, indent) FILE *file; const char *indent; { - fnotice (file, "GGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n", - PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE)); #ifndef __VERSION__ #define __VERSION__ "[?]" #endif @@ -4661,6 +4659,9 @@ print_version (file, indent) , indent, *indent != 0 ? " " : "", lang_hooks.name, version_string, TARGET_NAME, indent, __VERSION__); + fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n", + indent, *indent != 0 ? " " : "", + PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE)); } /* Print an option value and return the adjusted position in the line. |

