mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 07:08:01 +08:00
* config/tc-z8k.c (md_assemble): Improve error detection.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2005-01-28 Christian Groessler <chris@groessler.org>
|
||||||
|
|
||||||
|
* config/tc-z8k.c (md_assemble): Improve error detection.
|
||||||
|
|
||||||
2005-01-28 Jan Beulich <jbeulich@novell.com>
|
2005-01-28 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* config/tc-ia64.c (ia64_estimate_size_before_relax): Allocate space
|
* config/tc-ia64.c (ia64_estimate_size_before_relax): Allocate space
|
||||||
|
@ -1241,11 +1241,12 @@ md_assemble (char *str)
|
|||||||
|
|
||||||
new_input_line_pointer = get_operands (opcode, op_end, operand);
|
new_input_line_pointer = get_operands (opcode, op_end, operand);
|
||||||
if (new_input_line_pointer)
|
if (new_input_line_pointer)
|
||||||
input_line_pointer = new_input_line_pointer;
|
{
|
||||||
|
input_line_pointer = new_input_line_pointer;
|
||||||
|
opcode = get_specific (opcode, operand);
|
||||||
|
}
|
||||||
|
|
||||||
opcode = get_specific (opcode, operand);
|
if (new_input_line_pointer == NULL || opcode == NULL)
|
||||||
|
|
||||||
if (opcode == 0)
|
|
||||||
{
|
{
|
||||||
/* Couldn't find an opcode which matched the operands. */
|
/* Couldn't find an opcode which matched the operands. */
|
||||||
char *where = frag_more (2);
|
char *where = frag_more (2);
|
||||||
|
Reference in New Issue
Block a user