Commit 7a69a172 by Geert Bosch Committed by Geert Bosch

toplev.c (print_version): Add indentation for GGC heuristics and output after…

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
parent 9308be90
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
......
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment