Fix iconst.i8 0 miscompilation

This commit is contained in:
bjorn3
2020-12-11 17:17:18 +01:00
committed by Benjamin Bouvier
parent 1d90c329b4
commit 8f7f8ee0b4
4 changed files with 14 additions and 14 deletions

View File

@@ -711,9 +711,6 @@ pub static XOR_IMM8_SIGN_EXTEND: [u8; 1] = [0x83];
/// r/m{16,32,64} XOR register of the same size.
pub static XOR: [u8; 1] = [0x31];
/// r/m8 XOR r8.
pub static XORB: [u8; 1] = [0x30];
/// Bitwise logical XOR of packed double-precision floating-point values.
pub static XORPD: [u8; 3] = [0x66, 0x0f, 0x57];