mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
Fix abort in x86 disassembler.
PR binutils/20893 * i386-dis.c (OP_VEX): Replace call to abort with a append of bad opcode designator.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2016-12-01 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR binutils/20893
|
||||||
|
* i386-dis.c (OP_VEX): Replace call to abort with a append of bad
|
||||||
|
opcode designator.
|
||||||
|
|
||||||
2016-11-29 Claudiu Zissulescu <claziss@synopsys.com>
|
2016-11-29 Claudiu Zissulescu <claziss@synopsys.com>
|
||||||
|
|
||||||
* arc-opc.c (insert_ra_chk): New function.
|
* arc-opc.c (insert_ra_chk): New function.
|
||||||
|
@ -16975,7 +16975,8 @@ OP_VEX (int bytemode, int sizeflag ATTRIBUTE_UNUSED)
|
|||||||
names = names_mask;
|
names = names_mask;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
abort ();
|
/* See PR binutils/20893 for a reproducer. */
|
||||||
|
oappend ("(bad)");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user