We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a3f47 commit 5a086fdCopy full SHA for 5a086fd
objdiff-core/src/arch/ppc.rs
@@ -207,12 +207,7 @@ impl ObjArch for ObjArchPpc {
207
return Some(DataType::String);
208
}
209
210
- let op = Opcode::from(instruction.op as u8);
211
- if let Some(ty) = guess_data_type_from_load_store_inst_op(op) {
212
- Some(ty)
213
- } else {
214
- None
215
- }
+ guess_data_type_from_load_store_inst_op(Opcode::from(instruction.op as u8))
216
217
218
fn display_data_type(&self, ty: DataType, bytes: &[u8]) -> Option<String> {
0 commit comments