-
Notifications
You must be signed in to change notification settings - Fork 211
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
Segfault in __udivmodti4 quickcheck when remainder is requested #137
Comments
The segfault happens at:
|
According to this Travis build, this appears to only happens on MIPS. EDIT: Actually, this might be a different error. |
@japaric as you can see from this travis log, it failed on multiple 64 bit platforms (x86_64, aarch64, mips64, powerpc64, ...): https://travis-ci.org/rust-lang-nursery/compiler-builtins/builds/198218713 |
From #155, I'm seeing errors in the following unit tests only on 32-bit MIPS
|
@est31 AFAICS, all the errors in the build you have linked seem to be due to "missing symbol" which indicates a bad cache. |
I can locally repro on x86_64. The weird thing is that we are not hitting this bug on x86_64 and other arches in #155. |
They seem to be passing locally so let's see what CI has to say. Closes rust-lang#137
PR #133 adds quickcheck tests for
__udivmodti4
with the code that does checking with remainder enabled commented out. I commented it out as I got a segfault.The text was updated successfully, but these errors were encountered: