linker: Remove unused parameter from WriteRelocations()

is_jump_relocation is never used within the function, so we can just
remove it.
This commit is contained in:
Lioncash
2018-07-23 17:39:21 -04:00
parent 07e5319d55
commit 184c516182
2 changed files with 4 additions and 7 deletions

View File

@ -24,8 +24,7 @@ protected:
};
void WriteRelocations(std::vector<u8>& program_image, const std::vector<Symbol>& symbols,
u64 relocation_offset, u64 size, bool is_jump_relocation,
VAddr load_base);
u64 relocation_offset, u64 size, VAddr load_base);
void Relocate(std::vector<u8>& program_image, u32 dynamic_section_offset, VAddr load_base);
void ResolveImports();