From 7a69a172d023724ba7b0e5678627bc3d8f3ff222 Mon Sep 17 00:00:00 2001 From: Geert Bosch Date: Thu, 27 Feb 2003 21:51:41 +0100 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/toplev.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b836d0742a01..65a96ed3b7f9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-02-27 Geert Bosch + + * toplev.c (print_version): Add indentation for GGC heuristics and + output after printing version information. + 2003-02-27 James E Wilson * combine.c (simplify_comparison): Require integral mode when diff --git a/gcc/toplev.c b/gcc/toplev.c index ae068d43472c..b90edcba5a81 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. -- 2.47.2