x86: drop use of setjmp() from disassembler
authorJan Beulich <jbeulich@suse.com>
Fri, 21 Apr 2023 10:09:59 +0000 (12:09 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 21 Apr 2023 10:09:59 +0000 (12:09 +0200)
With the longjmp() uses all gone, the setjmp() isn't necessary anymore
either.

opcodes/i386-dis.c

index 24815389353544683c710166a58cafeff3a8568f..d6bff51e6e6beab67a7ecca05f4ccecf1d16c40f 100644 (file)
@@ -39,7 +39,6 @@
 #include "libiberty.h"
 #include "safe-ctype.h"
 
-#include <setjmp.h>
 typedef struct instr_info instr_info;
 
 static bool dofloat (instr_info *, int);
@@ -133,7 +132,6 @@ struct dis_private {
   bfd_byte the_buffer[MAX_MNEM_SIZE];
   bfd_vma insn_start;
   int orig_sizeflag;
-  OPCODES_SIGJMP_BUF bailout;
 };
 
 enum address_mode
@@ -9874,9 +9872,6 @@ print_insn (bfd_vma pc, disassemble_info *info, int intel_syntax)
       ins.op_out[i] = op_out[i];
     }
 
-  if (OPCODES_SIGSETJMP (priv.bailout) != 0)
-    return fetch_error (&ins);
-
   sizeflag = priv.orig_sizeflag;
 
   switch (ckprefix (&ins))