mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-14 00:29:24 +08:00
* config/tc-dvp.c (assemble_vu): Print better error message if
lower insn is missing.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
start-sanitize-sky
|
||||||
|
Tue Jun 9 12:20:44 1998 Doug Evans <devans@canuck.cygnus.com>
|
||||||
|
|
||||||
|
* config/tc-dvp.c (assemble_vu): Print better error message if
|
||||||
|
lower insn is missing.
|
||||||
|
|
||||||
|
end-sanitize-sky
|
||||||
Tue Jun 9 13:52:53 1998 Ian Lance Taylor <ian@cygnus.com>
|
Tue Jun 9 13:52:53 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* Makefile.am: Rebuild dependencies.
|
* Makefile.am: Rebuild dependencies.
|
||||||
|
@ -951,7 +951,7 @@ assemble_vu (str)
|
|||||||
|
|
||||||
if (p == NULL)
|
if (p == NULL)
|
||||||
{
|
{
|
||||||
as_bad ("lower slot missing in `%s'", str);
|
as_bad ("lower instruction missing");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -971,6 +971,12 @@ assemble_vu (str)
|
|||||||
if (opcode == NULL)
|
if (opcode == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (*str == 0)
|
||||||
|
{
|
||||||
|
as_bad ("lower instruction missing");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* Assemble the lower insn.
|
/* Assemble the lower insn.
|
||||||
Pass `fixup_count' for `init_fixup_count' so that we don't clobber
|
Pass `fixup_count' for `init_fixup_count' so that we don't clobber
|
||||||
any fixups the upper insn had. */
|
any fixups the upper insn had. */
|
||||||
|
Reference in New Issue
Block a user