diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-09 14:01:54 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | 74f3086c334e581d59eb9dc2fb2460996d794865 (patch) | |
| tree | 4124e9c6131ba17874dfdf510b4bff4c63e67bae /rust/src/architecture.rs | |
| parent | d50c2301d2b858713d924c072564994c12ad383b (diff) | |
[Rust] Add `CoreRegister` name to the `Debug` impl
Diffstat (limited to 'rust/src/architecture.rs')
| -rw-r--r-- | rust/src/architecture.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/architecture.rs b/rust/src/architecture.rs index 5ec63eef..211446d1 100644 --- a/rust/src/architecture.rs +++ b/rust/src/architecture.rs @@ -863,6 +863,7 @@ impl Debug for CoreRegister { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { f.debug_struct("CoreRegister") .field("id", &self.id) + .field("name", &self.name()) .finish() } } |
