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:
parent
9beeb5d9e5
commit
539dccd38e
|
@ -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
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue