OSDN Git Service

* toplev.c (print_version): Add indentation for GGC heuristics and
authorbosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 27 Feb 2003 20:51:41 +0000 (20:51 +0000)
committerbosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 27 Feb 2003 20:51:41 +0000 (20:51 +0000)
output after printing version information.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63524 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/toplev.c

index b836d07..65a96ed 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 ae068d4..b90edcb 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.