aboutsummaryrefslogtreecommitdiff
path: root/src/armv8/a64.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-05-03 13:59:12 -0700
committeriximeow <me@iximeow.net>2020-05-03 13:59:12 -0700
commitb4259c5b68d6df452dead48f42d602e7d8de0dc3 (patch)
treea210581dc3247009861fc87e86b471108b2caca4 /src/armv8/a64.rs
parent5ef20478a4f23cb3a94efc4400d6de33b5824e12 (diff)
bump to version 0.0.4, bumping yaxpeax-arch to 0.0.40.0.4
Diffstat (limited to 'src/armv8/a64.rs')
-rw-r--r--src/armv8/a64.rs12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/armv8/a64.rs b/src/armv8/a64.rs
index 30992b2..65d513a 100644
--- a/src/armv8/a64.rs
+++ b/src/armv8/a64.rs
@@ -3,7 +3,7 @@
use std::fmt::{self, Display, Formatter};
-use yaxpeax_arch::{Arch, Decoder, LengthedInstruction, ShowContextual, YaxColors};
+use yaxpeax_arch::{Arch, AddressDiff, Decoder, LengthedInstruction, ShowContextual, YaxColors};
#[allow(non_snake_case)]
mod docs {
@@ -642,9 +642,13 @@ impl Display for Instruction {
}
impl LengthedInstruction for Instruction {
- type Unit = <ARMv8 as Arch>::Address;
- fn len(&self) -> Self::Unit { 4 }
- fn min_size() -> Self::Unit { 4 }
+ type Unit = AddressDiff<<ARMv8 as Arch>::Address>;
+ fn min_size() -> Self::Unit {
+ AddressDiff::from_const(4)
+ }
+ fn len(&self) -> Self::Unit {
+ AddressDiff::from_const(4)
+ }
}
impl Default for Instruction {