diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-09-19 03:58:41 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-09-19 03:58:41 +0000 |
commit | 734d157caf3c4a6cca8b9cda844246a860a17834 (patch) | |
tree | 6e2484bd32f292ddab16750bfe0ccce30a97cd6f /gdb/elfread.c | |
parent | d3cb6d531b01be6e16eb48ff683bb8f5b8cd9940 (diff) | |
download | gdb-734d157caf3c4a6cca8b9cda844246a860a17834.tar.gz |
Revert previous change. Not obvious.
Diffstat (limited to 'gdb/elfread.c')
-rw-r--r-- | gdb/elfread.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/elfread.c b/gdb/elfread.c index 33ea394ac24..7d37297c5f4 100644 --- a/gdb/elfread.c +++ b/gdb/elfread.c @@ -349,13 +349,7 @@ elf_symtab_read (struct objfile *objfile, int dynamic) } else if (sym->section->flags & SEC_CODE) { - if (sym->name[0] == '.' - && (strncmp (sym->name + 1, "objc_", 4) == 0)) - { - /* Looks like an Objective-C special symbol */ - continue; - } - else if (sym->flags & BSF_GLOBAL) + if (sym->flags & BSF_GLOBAL) { ms_type = mst_text; } |