mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
x86: Put back 3 aborts in OP_E_memory
Put back 3 aborts where invalid lengths should have been filtered out. gas/ PR binutils/28247 * testsuite/gas/i386/bad-bcast.s: Add a comment. opcodes/ PR binutils/28247 * * i386-dis.c (OP_E_memory): Put back 3 aborts.
This commit is contained in:
parent
7e40d574be
commit
ca22cf5ed5
@ -1,2 +1,3 @@
|
||||
.text
|
||||
# Invalid 16-bit broadcast with EVEX.W == 1.
|
||||
.byte 0x62, 0xc3, 0x8c, 0x1d, 0x66, 0x90, 0x66, 0x90, 0x66, 0x90
|
||||
|
@ -11928,7 +11928,7 @@ OP_E_memory (int bytemode, int sizeflag)
|
||||
oappend ("{1to32}");
|
||||
break;
|
||||
default:
|
||||
oappend ("{bad}");
|
||||
abort ();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -11948,7 +11948,7 @@ OP_E_memory (int bytemode, int sizeflag)
|
||||
oappend ("{1to8}");
|
||||
break;
|
||||
default:
|
||||
oappend ("{bad}");
|
||||
abort ();
|
||||
}
|
||||
}
|
||||
else if (bytemode == x_mode
|
||||
@ -11966,7 +11966,7 @@ OP_E_memory (int bytemode, int sizeflag)
|
||||
oappend ("{1to16}");
|
||||
break;
|
||||
default:
|
||||
oappend ("{bad}");
|
||||
abort ();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user