summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/opcodes/ns32k-dis.c
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.25/opcodes/ns32k-dis.c')
-rw-r--r--binutils-2.25/opcodes/ns32k-dis.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/binutils-2.25/opcodes/ns32k-dis.c b/binutils-2.25/opcodes/ns32k-dis.c
index ed6e1650..c6a42df4 100644
--- a/binutils-2.25/opcodes/ns32k-dis.c
+++ b/binutils-2.25/opcodes/ns32k-dis.c
@@ -1,6 +1,5 @@
/* Print National Semiconductor 32000 instructions.
- Copyright 1986, 1988, 1991, 1992, 1994, 1998, 2001, 2002, 2005, 2007,
- 2009 Free Software Foundation, Inc.
+ Copyright (C) 1986-2014 Free Software Foundation, Inc.
This file is part of the GNU opcodes library.
@@ -58,7 +57,7 @@ struct private
bfd_byte *max_fetched;
bfd_byte the_buffer[MAXLEN];
bfd_vma insn_start;
- jmp_buf bailout;
+ OPCODES_SIGJMP_BUF bailout;
};
@@ -83,7 +82,7 @@ fetch_data (struct disassemble_info *info, bfd_byte *addr)
if (status != 0)
{
(*info->memory_error_func) (status, start, info);
- longjmp (priv->bailout, 1);
+ OPCODES_SIGLONGJMP (priv->bailout, 1);
}
else
priv->max_fetched = addr;
@@ -746,7 +745,7 @@ print_insn_ns32k (bfd_vma memaddr, disassemble_info *info)
info->private_data = & priv;
priv.max_fetched = priv.the_buffer;
priv.insn_start = memaddr;
- if (setjmp (priv.bailout) != 0)
+ if (OPCODES_SIGSETJMP (priv.bailout) != 0)
/* Error return. */
return -1;