diff options
author | Pierre Muller <muller@sourceware.org> | 2000-09-04 08:29:25 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2000-09-04 08:29:25 +0000 |
commit | a5238fbc0302d1c9655b2285ce7b3071ee9e9f41 (patch) | |
tree | dfecafd0c05a75507080fceb8a851ecd9cd8f3a3 /gdb/symtab.c | |
parent | a47cf5671637afe2982f6fc5840116c9dbec9b74 (diff) | |
download | gdb-a5238fbc0302d1c9655b2285ce7b3071ee9e9f41.zip gdb-a5238fbc0302d1c9655b2285ce7b3071ee9e9f41.tar.gz gdb-a5238fbc0302d1c9655b2285ce7b3071ee9e9f41.tar.bz2 |
2000-09-04 Pierre Muller <muller@ics.u-strasbg.fr>
* c-typeprint.c (c_typedef_print): remove (replaced by typedef_print in
typeprint.c).
* typeprint.c (typedef_print): new function. (old c_typedef_print
function with pascal language support added).
* value.h (c_printdef_print): removed.
(typedef_print): declare.
* symtab.c (print_symbol_info): call to c_typedef_print replaced by
call to typedef_print.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index 2e83933..4068fd0 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -3830,7 +3830,7 @@ print_symbol_info (namespace_enum kind, struct symtab *s, struct symbol *sym, /* Typedef that is not a C++ class */ if (kind == TYPES_NAMESPACE && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE) - c_typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout); + typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout); /* variable, func, or typedef-that-is-c++-class */ else if (kind < TYPES_NAMESPACE || (kind == TYPES_NAMESPACE && |