.rela.debug_info relocations are being done via
ObjectFileELF::ApplyRelocations for aarch64. Currently, the switch case
that iterates over the relocation type is only implemented for a few
different types and assert(false)es over the rest.
Implement the relocation for R_AARCH64_ABS32 in ApplyRelocations
Is it worth refactoring this assert a little bit. At a microscopic level both
and
are really an instance of:
Where IsRelocABS32 could abstract away the target specific relocation codes.