Modified Files:

remote-os9k.c stabsread.c

        * remote-os9k.c (rombuf_command): fix a bug accepting rombug
        output.
        * stabsread.c (read_struct_fields): os9k nested structure does not
        have terminating ';', instead it just get to ',' and bit position
        and length.
This commit is contained in:
Kung Hsu 1994-06-09 22:03:41 +00:00
parent 9beeb5d9e5
commit 539dccd38e
2 changed files with 2 additions and 1 deletions

View File

@ -1015,7 +1015,7 @@ rombug_command (args, fromtty)
error("Missing command.");
printf_monitor("%s\r", args);
expect(CMD_DELIM, 0);
expect_prompt(0);
}
#if 0

View File

@ -2455,6 +2455,7 @@ read_struct_fields (fip, pp, type, objfile)
while (**pp != ';')
{
if (os9k_stabs && **pp == ',') break;
STABS_CONTINUE (pp);
/* Get space to record the next field's data. */
new = (struct nextfield *) xmalloc (sizeof (struct nextfield));