mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 05:48:20 +08:00
* dwarf2read.c (add_partial_symbol): Create an extra partial
symbol in the VAR_DOMAIN for Ada structures, unions or enums. (new_symbol): Likewise for symbols.
This commit is contained in:
@ -2004,7 +2004,8 @@ add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
|
||||
0, (CORE_ADDR) 0, cu->language, objfile);
|
||||
|
||||
if (cu->language == language_cplus
|
||||
|| cu->language == language_java)
|
||||
|| cu->language == language_java
|
||||
|| cu->language == language_ada)
|
||||
{
|
||||
/* For C++ and Java, these implicitly act as typedefs as well. */
|
||||
add_psymbol_to_list (actual_name, strlen (actual_name),
|
||||
@ -7231,7 +7232,8 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
|
||||
defines a typedef for the class. Synthesize a typedef symbol
|
||||
so that "ptype foo" works as expected. */
|
||||
if (cu->language == language_cplus
|
||||
|| cu->language == language_java)
|
||||
|| cu->language == language_java
|
||||
|| cu->language == language_ada)
|
||||
{
|
||||
struct symbol *typedef_sym = (struct symbol *)
|
||||
obstack_alloc (&objfile->objfile_obstack,
|
||||
|
Reference in New Issue
Block a user