From 77ee71904f68501c75422f5b17ca8d3ab103889c Mon Sep 17 00:00:00 2001 From: Simon Baldwin Date: Fri, 24 Aug 2012 14:58:06 +0000 Subject: dwarf2out.c (gen_producer_string): Omit command line switch if CL_NO_DWARF_RECORD flag set. gcc/ChangeLog * dwarf2out.c (gen_producer_string): Omit command line switch if CL_NO_DWARF_RECORD flag set. * opts.h (CL_NO_DWARF_RECORD): New. * opt-functions.awk (switch_flags): Add NoDWARFRecord. * doc/options.texi: Document NoDWARFRecord option flag. gcc/fortran/ChangeLog * lang.opt (-cpp=): Mark flag NoDWARFRecord. From-SVN: r190648 --- gcc/opts.h | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/opts.h') diff --git a/gcc/opts.h b/gcc/opts.h index dbefc64..a9336af 100644 --- a/gcc/opts.h +++ b/gcc/opts.h @@ -145,6 +145,7 @@ extern const unsigned int cl_lang_count; #define CL_JOINED (1U << 22) /* If takes joined argument. */ #define CL_SEPARATE (1U << 23) /* If takes a separate argument. */ #define CL_UNDOCUMENTED (1U << 24) /* Do not output with --help. */ +#define CL_NO_DWARF_RECORD (1U << 25) /* Do not add to producer string. */ /* Flags for an enumerated option argument. */ #define CL_ENUM_CANONICAL (1 << 0) /* Canonical for this value. */ -- cgit v1.1