diff options
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/dwarf/dwarf_import/src/types.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/dwarf/dwarf_import/src/types.rs b/plugins/dwarf/dwarf_import/src/types.rs index 776ee378..7f9e4e5d 100644 --- a/plugins/dwarf/dwarf_import/src/types.rs +++ b/plugins/dwarf/dwarf_import/src/types.rs @@ -83,6 +83,18 @@ pub(crate) fn parse_variable<R: ReaderType>( } } } + Ok(Operation::ImplicitValue { data }) => { + debug!( + "Unhandled operation type ImplicitValue with data length {} for variable", + data.len() + ); + } + Ok(Operation::EntryValue { expression }) => { + debug!( + "Unhandled operation type EntryValue with expression length {} for variable", + expression.len() + ); + } Ok(op) => { debug!("Unhandled operation type for variable: {:?}", op); } |
