X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=opcodes%2Fvax-dis.c;h=5f9f1e96e557ad966ac3ee5ce36fae18c6a27752;hb=beb4a5f76fb37aae9642239c64c9922935ccb245;hp=a119f0540f5dd10d708ffed0dc3b40edcb69c6df;hpb=aa820537ead0135a7c38c619039dce8a6fc74ed1;p=platform%2Fupstream%2Fbinutils.git diff --git a/opcodes/vax-dis.c b/opcodes/vax-dis.c index a119f05..5f9f1e9 100644 --- a/opcodes/vax-dis.c +++ b/opcodes/vax-dis.c @@ -1,6 +1,5 @@ /* Print VAX instructions. - Copyright 1995, 1998, 2000, 2001, 2002, 2005, 2007, 2009 - Free Software Foundation, Inc. + Copyright (C) 1995-2014 Free Software Foundation, Inc. Contributed by Pauline Middelink This file is part of the GNU opcodes library. @@ -20,9 +19,9 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +#include "sysdep.h" #include #include -#include "sysdep.h" #include "opcode/vax.h" #include "dis-asm.h" @@ -76,7 +75,7 @@ struct private bfd_byte * max_fetched; bfd_byte the_buffer[MAXLEN]; bfd_vma insn_start; - jmp_buf bailout; + OPCODES_SIGJMP_BUF bailout; }; /* Make sure that bytes from INFO->PRIVATE_DATA->BUFFER (inclusive) @@ -100,7 +99,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; @@ -396,7 +395,7 @@ print_insn_vax (bfd_vma memaddr, disassemble_info *info) parsed_disassembler_options = TRUE; } - if (setjmp (priv.bailout) != 0) + if (OPCODES_SIGSETJMP (priv.bailout) != 0) /* Error return. */ return -1;