diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-04-22 23:49:51 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-04-22 23:49:51 +0000 |
commit | 0a2e98a99e49311bf57edd4d2476b05c0ba8fcde (patch) | |
tree | bd0d5995c5f2929c9ecd4b472046c875baeee368 /gdb | |
parent | f645a4bf3855995ae0dbf847a64a258512847cf2 (diff) | |
download | gdb-0a2e98a99e49311bf57edd4d2476b05c0ba8fcde.zip gdb-0a2e98a99e49311bf57edd4d2476b05c0ba8fcde.tar.gz gdb-0a2e98a99e49311bf57edd4d2476b05c0ba8fcde.tar.bz2 |
* stabsread.c (read_type): Call read_type, not nonexistent
os9k_read_type.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/stabsread.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2120711..0dd9c4f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 22 16:43:54 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + + * stabsread.c (read_type): Call read_type, not nonexistent + os9k_read_type. + Fri Apr 22 14:25:36 1994 Kung Hsu (kung@mexican.cygnus.com) * remote-os9k.c (rombug_fetch_registers): set trace mode diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 37c23ca..c6e4d78 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -1553,7 +1553,7 @@ read_type (pp, objfile) ++*pp; while (**pp != ')') { - t = os9k_read_type(pp, objfile); + t = read_type(pp, objfile); if (**pp == ',') ++*pp; } } |