-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Arithmetic operation overflowed in rustc_trans::trans::cabi_x86_64 #29073
Comments
cc @luqmana |
Note that this occurred with |
From what I can tell, this is choking on the extern "system" {
fn getnameinfo(sa: *const libc::sockaddr, salen: socklen_t,
host: *mut c_char, hostlen: libc::size_t,
serv: *mut c_char, servlen: libc::size_t,
flags: c_int) -> c_int;
} |
Yup, I know what the issue is. I'll get a fix up as soon as I get home. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm getting an "arithmetic operation overflowed" ICE in librustc_trans/trans/cabi_x86_64.rs on line 454 when building stage1 libstd on 64-bit Ubuntu. Likely related to #27017.
The text was updated successfully, but these errors were encountered: