When we encouter a relocation type we don't know how to handle, this change causes us to print out the hexadecimal value of the relocation type. This makes troubleshooting a little easier.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
For ELF, we print out unknown relocation numbers in decimal. Is there any reason to prefer hexadecimal? At least they need leading "0x" to disambiguate.
Comment Actions
I chose hex because that's what we use in the source code to define the values. I'll prefix them with 0x to make that clear.
Comment Actions
We are not using formatv at the moment, so at least for now, please stick with utohexstr.