mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00:00
fix SparcV9 compared value
The Comparison include one extra `7`, what overflow the 32bits value and is never true.
This commit is contained in:
parent
937191c10e
commit
7dd6e04b0a
@ -918,7 +918,7 @@ callreloff: reloc is disp30 [reloc=inst_start+4*disp30;] { export *:$(SIZE) rel
|
||||
denom:$(SIZE) = regorimm & 0xffffffff;
|
||||
RD = numerator s/ denom;
|
||||
zeroflags(RD);
|
||||
i_vf = (RD s>= 0x80000000) || (RD s<= -0x7ffffffff);
|
||||
i_vf = (RD s>= 0x80000000) || (RD s<= -0x7fffffff);
|
||||
i_cf = 0;
|
||||
x_vf = 0;
|
||||
x_cf = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user