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 91bc23e commit e67d599Copy full SHA for e67d599
objdiff-core/src/arch/ppc/mod.rs
@@ -66,7 +66,9 @@ impl ArchPpc {
66
if file.is_64() {
67
powerpc::Extension::Ppc64 | powerpc::Extension::AltiVec
68
} else {
69
- powerpc::Extension::AltiVec.into()
+ // Gekko/Broadway objects often use the EF_PPC_EMB flag,
70
+ // but ProDG in particular does not emit it.
71
+ powerpc::Extensions::gekko_broadway()
72
}
73
74
};
0 commit comments