mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
* config/tc-hppa.c (pa_parse_space_stmt): Advance
input_line_pointer when an invalid argument is encountered.
This commit is contained in:
@ -72,6 +72,9 @@ Thu Oct 28 12:36:13 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
|
|||||||
* config/tc-hppa.c (md_atof): Return a NULL on success rather than
|
* config/tc-hppa.c (md_atof): Return a NULL on success rather than
|
||||||
an empty string.
|
an empty string.
|
||||||
|
|
||||||
|
* config/tc-hppa.c (pa_parse_space_stmt): Advance
|
||||||
|
input_line_poitner when an invalid argument is encountered.
|
||||||
|
|
||||||
Thu Oct 28 13:09:26 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Thu Oct 28 13:09:26 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
* config/tc-a29k.c (md_begin): When opcodes are mashed together in
|
* config/tc-a29k.c (md_begin): When opcodes are mashed together in
|
||||||
|
@ -5116,7 +5116,12 @@ pa_parse_space_stmt (space_name, create_flag)
|
|||||||
private = TRUE;
|
private = TRUE;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
as_bad ("Invalid .SPACE argument");
|
{
|
||||||
|
as_bad ("Invalid .SPACE argument");
|
||||||
|
*input_line_pointer = c;
|
||||||
|
if (! is_end_of_statement ())
|
||||||
|
input_line_pointer++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print_errors = TRUE;
|
print_errors = TRUE;
|
||||||
|
Reference in New Issue
Block a user