From: David Lecomber Date: Fri, 30 Jul 2004 12:22:27 +0000 (+0000) Subject: 2004-07-30 David Lecomber X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b0f35d58355e2c6b6083968260331ab6dece4578;p=binutils-gdb.git 2004-07-30 David Lecomber * dwarf2read.c (read_file_scope): Set producer if attribute present. (struct dwarf2_cu): Added new member producer. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 10ae4079067..5a0236a3df6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2004-07-30 David Lecomber + + * dwarf2read.c (read_file_scope): Set producer if attribute + present. + (struct dwarf2_cu): Added new member producer. + 2004-07-30 Jerome Guitton * inflow.c (kill_command): release file handles in BFD. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 845672d0afa..7d1dafad00b 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -262,6 +262,8 @@ struct dwarf2_cu enum language language; const struct language_defn *language_defn; + const char *producer; + /* The generic symbol table building routines have separate lists for file scope symbols and all all other scopes (local scopes). So we need to select the right one to pass to add_symbol_to_list(). @@ -2362,6 +2364,10 @@ read_file_scope (struct die_info *die, struct dwarf2_cu *cu) set_cu_language (DW_UNSND (attr), cu); } + attr = dwarf2_attr (die, DW_AT_producer, cu); + if (attr) + cu->producer = DW_STRING (attr); + /* We assume that we're processing GCC output. */ processing_gcc_compilation = 2; #if 0