PPC: Detect unpooled string literal references (#188)

* Update openssl and tokio for Cargo deny

* PPC: Detect unpooled string literal references
This commit is contained in:
LagoLunatic
2025-04-17 01:33:55 -04:00
committed by GitHub
parent 73a89d2768
commit fbf85632ab
5 changed files with 34 additions and 17 deletions

View File

@@ -247,7 +247,13 @@ pub trait Arch: Send + Sync + Debug {
SymbolFlagSet::default()
}
fn guess_data_type(&self, _resolved: ResolvedInstructionRef) -> Option<DataType> { None }
fn guess_data_type(
&self,
_resolved: ResolvedInstructionRef,
_bytes: &[u8],
) -> Option<DataType> {
None
}
fn symbol_hover(&self, _obj: &Object, _symbol_index: usize) -> Vec<HoverItem> { Vec::new() }