toplev.c (print_version): Add indentation for GGC heuristics and output after printin...
authorGeert Bosch <bosch@gnat.com>
Thu, 27 Feb 2003 20:51:41 +0000 (21:51 +0100)
committerGeert Bosch <bosch@gcc.gnu.org>
Thu, 27 Feb 2003 20:51:41 +0000 (21:51 +0100)
* toplev.c (print_version): Add indentation for GGC heuristics and
output after printing version information.

From-SVN: r63524

gcc/ChangeLog
gcc/toplev.c

index b836d0742a01cd16b24d346838b293a06c707bfe..65a96ed3b7f96847b6d0f1a58d71991386a38edd 100644 (file)
@@ -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
index ae068d43472c09c86d6c7afda10013e6a60669db..b90edcba5a8199df06530aba14dd365bfb27dc7c 100644 (file)
@@ -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.