diff options
author | Nick Clifton <nickc@redhat.com> | 2020-07-30 16:23:09 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-07-30 16:23:09 +0100 |
commit | 3f853ba38317e5204b8c0465233e4bf5f1f46fba (patch) | |
tree | f20b7d3860c3ad8af3f24cc688c6ed048374935a /gas/as.c | |
parent | f291783b26b68e08df5e3a06abd77674b86057c0 (diff) | |
download | gdb-3f853ba38317e5204b8c0465233e4bf5f1f46fba.zip gdb-3f853ba38317e5204b8c0465233e4bf5f1f46fba.tar.gz gdb-3f853ba38317e5204b8c0465233e4bf5f1f46fba.tar.bz2 |
Strange - my previous commit to as.c to set the default dwarf level to 3 seems to have disappeared. So here is the commit again.
Diffstat (limited to 'gas/as.c')
-rw-r--r-- | gas/as.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -102,8 +102,9 @@ int verbose = 0; MD_AFTER_PARSE_ARGS. */ int flag_dwarf_cie_version = -1; -/* The maximum level of DWARF DEBUG information we should manufacture. */ -unsigned int dwarf_level = 4; +/* The maximum level of DWARF DEBUG information we should manufacture. + This defaults to 3 unless overridden by a command line option. */ +unsigned int dwarf_level = 3; #if defined OBJ_ELF || defined OBJ_MAYBE_ELF int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON; |