-
Tested on version int32_t value;
// code that assigns to and uses value
return value >= 0; This greater or equal to zero check is implemented as: ; load value into eax
not eax
shr eax, 0x1f
; return So effectively it just isolates the sign bit and checks that. rax_25 = (not.d(value) u>> 0x1f).b It would be nice if the HLIL would display it as something similar to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thanks for the question, we moved this to an issue. |
Beta Was this translation helpful? Give feedback.
Thanks for the question, we moved this to an issue.