-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
ICE with incremental compiling when renaming variable #57692
Labels
A-incr-comp
Area: Incremental compilation
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-high
High priority
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
Centril
added
the
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
label
Jan 17, 2019
michaelwoerister
added
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
labels
Jan 17, 2019
Thanks for the bug report, @hellow554! That commit certainly could have caused this. I'll try to reproduce. |
Looks like this is an existing bug that was just uncovered by @Zoxc's PR. This should be rust/src/librustc/dep_graph/graph.rs Line 603 in daa53a5
I'll have a PR ready soon. |
triage: P-high. Assigning to @michaelwoerister |
Centril
added a commit
to Centril/rust
that referenced
this issue
Jan 18, 2019
Fix typo bug in DepGraph::try_mark_green(). r? @Zoxc Fixes rust-lang#57692.
Centril
added a commit
to Centril/rust
that referenced
this issue
Jan 18, 2019
Fix typo bug in DepGraph::try_mark_green(). r? @Zoxc Fixes rust-lang#57692.
Centril
added a commit
to Centril/rust
that referenced
this issue
Jan 19, 2019
Fix typo bug in DepGraph::try_mark_green(). r? @Zoxc Fixes rust-lang#57692.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-incr-comp
Area: Incremental compilation
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
P-high
High priority
regression-from-stable-to-nightly
Performance or correctness regression from stable to nightly.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Consider this code
Because the compiler complained, that
map
should be ALL_UPPERCASE, I renamed the variable toMAP
and it ICEs.Steps to reproduce:
cargo build
MAP
)cargo build
Was introduced at nightly-2019-01-14 so some of the commits between 75a369c...2fadb0a are to blame
The text was updated successfully, but these errors were encountered: