diff options
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index e62bb15..274fe1a 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -673,18 +673,14 @@ define_symbol (CORE_ADDR valu, char *string, int desc, int type, switch (string[1]) { case 't': - SYMBOL_SET_LINKAGE_NAME - (sym, obsavestring ("this", strlen ("this"), - &objfile->objfile_obstack)); + SYMBOL_SET_LINKAGE_NAME (sym, "this"); break; case 'v': /* $vtbl_ptr_type */ goto normal; case 'e': - SYMBOL_SET_LINKAGE_NAME - (sym, obsavestring ("eh_throw", strlen ("eh_throw"), - &objfile->objfile_obstack)); + SYMBOL_SET_LINKAGE_NAME (sym, "eh_throw"); break; case '_': |