From 9453ba0a0e7aa578d2b4ad61862efe0d3d52c567 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Tue, 28 Feb 2017 23:02:58 +0100 Subject: Introduce = for couple of options. 2017-02-28 Martin Liska * c.opt: Replace space with tabular for options of type. 2017-02-28 Martin Liska * common.opt: Replace space with tabular for options of type. * config/i386/i386.opt: Show value for -mlarge-data-threshold. * opts.c (print_filtered_help): Do not display number in hexadecimal format. From-SVN: r245789 --- gcc/opts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/opts.c') diff --git a/gcc/opts.c b/gcc/opts.c index c476860..8274fab 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1246,7 +1246,7 @@ print_filtered_help (unsigned int include_flags, } else sprintf (new_help + strlen (new_help), - "%#x", * (int *) flag_var); + "%d", * (int *) flag_var); } else strcat (new_help, option_enabled (i, opts) -- cgit v1.1