]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Default to DWARF level 4 in the assembler.
authorNick Clifton <nickc@redhat.com>
Thu, 30 Jul 2020 07:45:04 +0000 (08:45 +0100)
committerNick Clifton <nickc@redhat.com>
Thu, 30 Jul 2020 07:45:04 +0000 (08:45 +0100)
 * as.c (dwatf_level): Default to level 4 in case version is not
   set on the command line.

gas/ChangeLog
gas/as.c

index 9af16a03a296433b845b8f4782db800c5c53ddd7..355d70d8a1db67b6a20bab89519e3930b5e08d1c 100644 (file)
@@ -1,3 +1,8 @@
+2020-07-30  Nick Clifton  <nickc@redhat.com>
+
+       * as.c (dwatf_level): Default to level 4 in case version is not
+       set on the command line.
+
 2020-07-28  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR gas/26305
index 4c5881abd88c8fd493b8448fa7859810f1d8c197..c2da78870efa98aae072a7dcbe3ae02289943ffd 100644 (file)
--- a/gas/as.c
+++ b/gas/as.c
@@ -103,7 +103,7 @@ int verbose = 0;
 int flag_dwarf_cie_version = -1;
 
 /* The maximum level of DWARF DEBUG information we should manufacture.  */
-unsigned int dwarf_level = 0;
+unsigned int dwarf_level = 4;
 
 #if defined OBJ_ELF || defined OBJ_MAYBE_ELF
 int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;