gas: improve reproducibility for stabs debugging data format
authorDenys Zagorui <dzagorui@cisco.com>
Mon, 9 Nov 2020 15:39:10 +0000 (15:39 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 9 Nov 2020 15:39:10 +0000 (15:39 +0000)
* config/obj-elf (obj_elf_init_stab_section): Improve
reproducibility for stabs debugging data format

gas/ChangeLog
gas/config/obj-elf.c

index d0ed87a345b81e0c2d2113d55b44d0e57f4d5b62..11f17d4145779aacc4c01e16f2d1b2cfecb379c0 100644 (file)
@@ -1,3 +1,8 @@
+2020-11-09  Denys Zagorui  <dzagorui@cisco.com>
+
+       * config/obj-elf (obj_elf_init_stab_section): Improve
+       reproducibility for stabs debugging data format
+
 2020-11-09  Spencer E. Olson  <olsonse@umich.edu>
 
        * testsuite/gas/pru/misc.s: Add tests for lmbd (left-most bit
index 93eb81e98a422cc2de10a2d449429b131f974145..7aed8129bc45fcb7e6347a0bc2b2253ba98747d2 100644 (file)
@@ -2425,12 +2425,13 @@ obj_elf_init_stab_section (segT seg)
   p = frag_more (12);
   /* Zero it out.  */
   memset (p, 0, 12);
-  file = as_where (NULL);
+  file = remap_debug_filename (as_where (NULL));
   stabstr_name = concat (segment_name (seg), "str", (char *) NULL);
   stroff = get_stab_string_offset (file, stabstr_name, TRUE);
   know (stroff == 1 || (stroff == 0 && file[0] == '\0'));
   md_number_to_chars (p, stroff, 4);
   seg_info (seg)->stabu.p = p;
+  xfree ((char *) file);
 }
 
 #endif