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
will fail to compile on 32-bit machines, because the type int is 32-bits, but succeed on 64-bit builds because there int and i64 are the same. It'd be nice if the compiler could report cases where we're assuming particular sizes for int or uint so we don't get bit by cross-platform build failures later.
The text was updated successfully, but these errors were encountered:
don't dump xargo output onto users of 'cargo miri test'
The xargo invocation prints a lot of details users probably won't care about, so let's hide them (unless the user did `cargo miri setup`, then we still print everything).
celinval
added a commit
to celinval/rust-dev
that referenced
this issue
Jun 4, 2024
… support (rust-lang#2425)
This will also give visibility to the compiler to whether this feature is enabled or not which is needed to avoid type mismatch issue (model-checking/kani#1781).
Co-authored-by: Adrian Palacios <[email protected]>
Code like
will fail to compile on 32-bit machines, because the type
int
is 32-bits, but succeed on 64-bit builds because thereint
andi64
are the same. It'd be nice if the compiler could report cases where we're assuming particular sizes forint
oruint
so we don't get bit by cross-platform build failures later.The text was updated successfully, but these errors were encountered: