Method
extra_symbol_flags
(&self, symbol: &object::Symbol)
Source from the content-addressed store, hash-verified
| 350 | } |
| 351 | |
| 352 | fn extra_symbol_flags(&self, symbol: &object::Symbol) -> SymbolFlagSet { |
| 353 | if self.extab.as_ref().is_some_and(|extab| extab.contains_key(&(symbol.index().0 - 1))) { |
| 354 | SymbolFlag::HasExtra.into() |
| 355 | } else { |
| 356 | SymbolFlag::none() |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | fn guess_data_type(&self, resolved: ResolvedInstructionRef, bytes: &[u8]) -> Option<DataType> { |
| 361 | if resolved.relocation.is_some_and(|r| { |
Callers
nothing calls this directly
Tested by
no test coverage detected