From: Alexandre Oliva Date: Fri, 15 Jan 2021 19:22:54 +0000 (-0300) Subject: drop -dumpbase-ext from producer string X-Git-Tag: upstream/12.2.0~10217 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e63c2161d09903ca5c07b1eb0d8c0a1a17967499;p=platform%2Fupstream%2Fgcc.git drop -dumpbase-ext from producer string The -dumpbase and -dumpdir options are excluded from the producer string output in debug information, but -dumpbase-ext was not. This patch excludes it as well. for gcc/ChangeLog * opts.c (gen_command_line_string): Exclude -dumpbase-ext. --- diff --git a/gcc/opts.c b/gcc/opts.c index 389797d..1f1cf83 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -3286,6 +3286,7 @@ gen_command_line_string (cl_decoded_option *options, case OPT_o: case OPT_d: case OPT_dumpbase: + case OPT_dumpbase_ext: case OPT_dumpdir: case OPT_quiet: case OPT_version: