summaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-09-19 03:58:41 +0000
committerAndrew Cagney <cagney@redhat.com>2002-09-19 03:58:41 +0000
commit734d157caf3c4a6cca8b9cda844246a860a17834 (patch)
tree6e2484bd32f292ddab16750bfe0ccce30a97cd6f /gdb/stabsread.c
parentd3cb6d531b01be6e16eb48ff683bb8f5b8cd9940 (diff)
downloadgdb-734d157caf3c4a6cca8b9cda844246a860a17834.tar.gz
Revert previous change. Not obvious.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r--gdb/stabsread.c29
1 files changed, 2 insertions, 27 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index 0263e9e4c7b..4697b4067e7 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -1267,37 +1267,13 @@ symbol_reference_defined (char **string)
}
}
-static char *
-objc_find_colon (name)
- char *name;
-{
- char *s = name;
- if (s[0] == '-' || *s == '+')
- {
- if (s[1] != '[')
- {
- error ("invalid symbol name \"%s\"", name);
- }
- s = strchr (s, ']');
- if (s == NULL)
- {
- error ("invalid symbol name \"%s\"", name);
- }
- return strchr (s, ':');
- }
- else
- {
- return strchr (s, ':');
- }
-}
-
/* ARGSUSED */
struct symbol *
define_symbol (CORE_ADDR valu, char *string, int desc, int type,
struct objfile *objfile)
{
register struct symbol *sym;
- char *p = (char *) objc_find_colon (string);
+ char *p = (char *) strchr (string, ':');
int deftype;
int synonym = 0;
register int i;
@@ -2030,8 +2006,7 @@ define_symbol (CORE_ADDR valu, char *string, int desc, int type,
a typedef for "foo". Unfortunately, cfront never makes the typedef
when translating C++ into C. We make the typedef here so that
"ptype foo" works as expected for cfront translated code. */
- else if ((current_subfile->language == language_cplus)
- || (current_subfile->language == language_objc))
+ else if (current_subfile->language == language_cplus)
synonym = 1;
SYMBOL_TYPE (sym) = read_type (&p, objfile);