* h8500-dis.c, i386-dis.c, m68k-dis.c, z8k-dis.c (fetch_data):
deliberately return non-zero to setjmp from longjmp. Otherwise this code fails to compile.
This commit is contained in:
parent
4cb6685364
commit
05545edc03
@ -1,3 +1,9 @@
|
||||
Wed Mar 31 20:49:06 1993 K. Richard Pixley (rich@rtl.cygnus.com)
|
||||
|
||||
* h8500-dis.c, i386-dis.c, m68k-dis.c, z8k-dis.c (fetch_data):
|
||||
deliberately return non-zero to setjmp from longjmp. Otherwise
|
||||
this code fails to compile.
|
||||
|
||||
Wed Mar 31 17:04:31 1993 Stu Grossman (grossman@cygnus.com)
|
||||
|
||||
* m68k-dis.c: Fix prototype for fetch_arg().
|
||||
|
@ -70,7 +70,7 @@ fetch_data (info, addr)
|
||||
if (status != 0)
|
||||
{
|
||||
(*info->memory_error_func) (status, start, info);
|
||||
longjmp (priv->bailout);
|
||||
longjmp (priv->bailout, 1);
|
||||
}
|
||||
else
|
||||
priv->max_fetched = addr;
|
||||
|
@ -154,7 +154,7 @@ fetch_data (info, addr)
|
||||
if (status != 0)
|
||||
{
|
||||
(*info->memory_error_func) (status, start, info);
|
||||
longjmp (priv->bailout);
|
||||
longjmp (priv->bailout, 1);
|
||||
}
|
||||
else
|
||||
priv->max_fetched = addr;
|
||||
|
Loading…
Reference in New Issue
Block a user