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 de2a8eb52f
commit d5a96f2c94
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();