ICE: format_args!
optimization can construct a &str
longer than isize::MAX
#138811
Labels
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Optimizations for
format_args!
can construct a&str
constant longer thanisize::MAX
or evenusize::MAX
. I have observed this when cross-compiling to a 32-bit target from a 64-bit host. If compiled on a 32-bit host, rustc would probably panic inString
resizing.Setup
isize::MAX
overflowThis
format_args!
is optimized to a constant&str
with length 2147483648 (i32::MAX + 1
).Compilation produces this error:
$ cargo build --release --target=i686-unknown-linux-gnu
usize::MAX
overflowThis
format_args!
is optimized to a constant&str
with length 4294967296 (1 << 32
).Compilation aborts with this ICE:
$ cargo build --release --target=i686-unknown-linux-gnu
The text was updated successfully, but these errors were encountered: