diff options
author | Geert Bosch <bosch@gnat.com> | 2003-02-27 21:51:41 +0100 |
---|---|---|
committer | Geert Bosch <bosch@gcc.gnu.org> | 2003-02-27 21:51:41 +0100 |
commit | 7a69a172d023724ba7b0e5678627bc3d8f3ff222 (patch) | |
tree | 7338bd3fd33491378072d282ae33d3083fa22bfb | |
parent | 9308be9056d9f6d4114ca81f4e8774f54bf8e22e (diff) | |
download | gcc-7a69a172d023724ba7b0e5678627bc3d8f3ff222.zip gcc-7a69a172d023724ba7b0e5678627bc3d8f3ff222.tar.gz gcc-7a69a172d023724ba7b0e5678627bc3d8f3ff222.tar.bz2 |
toplev.c (print_version): Add indentation for GGC heuristics and output after printing version information.
* toplev.c (print_version): Add indentation for GGC heuristics and
output after printing version information.
From-SVN: r63524
-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 b836d07..65a96ed 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 ae068d4..b90edcba 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. |