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
Negative values of signed ints will be treated as positive for the purpose of indexing into arrays. This only comes up when using narrow int types. foo[-1i8] is equivalent to foo[255].
We think the solution is to sign extend array indexes in trans.
The text was updated successfully, but these errors were encountered:
Negative values of signed ints will be treated as positive for the purpose of indexing into arrays. This only comes up when using narrow int types.
foo[-1i8]
is equivalent tofoo[255]
.We think the solution is to sign extend array indexes in trans.
The text was updated successfully, but these errors were encountered: