diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/armv8/a64.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armv8/a64.rs b/src/armv8/a64.rs index b6365e6..fca9e15 100644 --- a/src/armv8/a64.rs +++ b/src/armv8/a64.rs @@ -1686,7 +1686,7 @@ impl Decoder<ARMv8> for InstDecoder { let size = if sf { SizeCode::X } else { SizeCode::W }; // and operands are contingent on bit 21 - if (word & 0x20000) != 0 { + if (word & 0x20_0000) != 0 { // extended form // opt (bits 22, 23) must be 0 |