You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm writing an assembler to generate relocatable object file and using dump function of rv8 to debug(btw, its output format is really nice). The file is little endian.
But I've found that the dump of relocations has a bug: the r_addend is incorrect. As I forgot to memset Elf32_Rela, the r_addend member was incorrectly not zero, but in dumped result it is actually zero.
The text was updated successfully, but these errors were encountered:
ZYHowell
changed the title
dump with r_addend is not well
dump with r_addend is not correct
Jun 8, 2020
I'm writing an assembler to generate relocatable object file and using dump function of rv8 to debug(btw, its output format is really nice). The file is little endian.
But I've found that the dump of relocations has a bug: the r_addend is incorrect. As I forgot to memset Elf32_Rela, the r_addend member was incorrectly not zero, but in dumped result it is actually zero.
The text was updated successfully, but these errors were encountered: