diff options
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index 62e9ce4..30de42d 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -124,12 +124,13 @@ struct general_symbol_info union { - struct cplus_specific + /* This is used by languages which wish to store a demangled name. + currently used by Ada, Java, and Objective C.*/ + struct mangled_lang { - /* This is in fact used for C++, Java, and Objective C. */ char *demangled_name; } - cplus_specific; + mangled_lang; } language_specific; |