-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Fuzzer failure in fuzz_simplify #7811
Comments
Initially assigning to @abadams for triage |
This one's definitely caused by defining uint32 -> int32 to wrap. max(i32(some_u32), -128) is being simplified to i32(some_u32) because something is assuming a uint32 cast to an int32 could never be negative. Just need to find what. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running fuzz_simplify on the enclosed file produces a failure:
testcase-5562105212239872.zip
The text was updated successfully, but these errors were encountered: