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
This is indeed present in current next branch. The problem is that code is uint8_t*, so its elements, before being shifted, are promoted to int (not to unsigned int!) due to integer promotion rules of the C language. They should be casted to an unsigned before shifting.
arch/ARM/ARMDisassembler.c:491:19: runtime error: left shift of 225 by 24 places cannot be represented in type 'int'
The text was updated successfully, but these errors were encountered: