We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manifestation:
big = 2147483647 rem (big + 1) big > 4294967295
Expected the answer to be 1.
(Note that big + 1 doesn't overflow the underlying Word32 -- it's just the rem operation messing up).
big + 1
rem
The cause is
dex-lang/src/lib/ImpToLLVM.hs
Line 614 in c996e98
The text was updated successfully, but these errors were encountered:
By inspection, I expect IDiv to have the same problem.
IDiv
Sorry, something went wrong.
No branches or pull requests
Manifestation:
Expected the answer to be 1.
(Note that
big + 1
doesn't overflow the underlying Word32 -- it's just therem
operation messing up).The cause is
dex-lang/src/lib/ImpToLLVM.hs
Line 614 in c996e98
The text was updated successfully, but these errors were encountered: