Closed pd0wm closed 7 months ago
I also found it, but forgot to commit, sorry for it.
BTW, where you found this magic with [const]
?
I solved it in more ugly way (just removed all these addr32abs
).
Found it in the upstream v850 code https://github.com/NationalSecurityAgency/ghidra/blob/master/Ghidra/Processors/V850/data/languages/Helpers/Extras.sinc#L38
addr32abs
has a dereference causing it to hold the value at the address pointed bydisp32
instead ofdisp32
itself. This would break jump tables.