comment small unused code

This commit is contained in:
ManDude
2022-04-16 21:24:06 +01:00
parent 0b503dd726
commit 48b23f3be7
3 changed files with 7 additions and 5 deletions
@@ -562,11 +562,13 @@ static void link_v5(LinkedObjectFile& f,
} else if ((reloc & 0x3f) == 0x3f) {
ASSERT(false); // todo, does this ever get hit?
} else {
/*
int n_methods_base = reloc & 0x3f;
int n_methods = n_methods_base * 4;
if (n_methods_base) {
n_methods += 3;
}
*/
link_ptr += 2; // ghidra misses some aliasing here and would have you think this is +1!
const char* sname = (const char*)(&data.at(link_ptr));
link_ptr += strlen(sname) + 1;