diff options
author | K. Richard Pixley <rich@cygnus> | 1993-04-01 04:52:59 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-04-01 04:52:59 +0000 |
commit | 05545edc03d841f44b1a7aef9f53471681c433e5 (patch) | |
tree | fcbb76b3c7ad48a3288a6c31c1aa726fd99ecbf1 /opcodes/m68k-dis.c | |
parent | 4cb6685364c5f96c6ac08e2d57ff4c7304c40e60 (diff) | |
download | gdb-05545edc03d841f44b1a7aef9f53471681c433e5.zip gdb-05545edc03d841f44b1a7aef9f53471681c433e5.tar.gz gdb-05545edc03d841f44b1a7aef9f53471681c433e5.tar.bz2 |
* 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.
Diffstat (limited to 'opcodes/m68k-dis.c')
-rw-r--r-- | opcodes/m68k-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index 8c61dc6..265c113 100644 --- a/opcodes/m68k-dis.c +++ b/opcodes/m68k-dis.c @@ -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; |