Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

psyq-obj-parser: fix HI16 relocations with large addends #1653

Merged
merged 1 commit into from
May 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/psyq-obj-parser/psyq-obj-parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1214,8 +1214,8 @@ bool PsyqLnkFile::Relocation::generateElf(ElfRelocationPass pass, const std::str
if (symbolOffset & 0x8000) {
hi += 1;
}
sectionData[offset + 0] = (uint8_t)(hi >> 8);
sectionData[offset + 1] = (uint8_t)(hi >> 0);
sectionData[offset + 0] = (uint8_t)(hi >> 0);
sectionData[offset + 1] = (uint8_t)(hi >> 8);
break;
}
case PsyqRelocType::LO16: {
Expand Down
Loading