Uh oh!
There was an error while loading. Please reload this page.
Fix issue 57762 - #57840
Conversation
rust-highfive
commented
Jan 22, 2019
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
tromey
commented
Jan 22, 2019
Someone the commit message was munged. |
Issue 57762 points out a compiler crash when the compiler was built using a stock LLVM 7. LLVM 7 was released without a necessary fix for a bug in the DWARF discriminant code. This patch changes rustc to use the fallback mode on (non-Rust) LLVM 7. Closesrust-lang#57762
tromey
commented
Jan 22, 2019
*somehow. apparently I cannot type today. anyway, pushed a better message. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Address the review comments by simplifying the version check to just "< 8".
nikic
commented
Jan 23, 2019
@bors r+ rollup |
bors
commented
Jan 23, 2019
📌 Commit 9452a8d has been approved by |
Fix issue 57762 against a stock LLVM 7. LLVM 7 was released without a necessary fix for a bug in the DWARF discriminant code. This patch changes rustc to use the fallback mode on (non-Rust) LLVM 7. Closesrust-lang#57762
Rollup of 11 pull requests Successful merges: - #57179 (Update std/lib.rs docs to reflect Rust 2018 usage) - #57730 (Merge visitors in AST validation) - #57779 (Recover from parse errors in literal struct fields and incorrect float literals) - #57793 (Explain type mismatch cause pointing to return type when it is `impl Trait`) - #57795 (Use structured suggestion in stead of notes) - #57817 (Add error for trailing angle brackets.) - #57834 (Stabilize Any::get_type_id and rename to type_id) - #57836 (Fix some cross crate existential type ICEs) - #57840 (Fix issue 57762) - #57844 (use port 80 for retrieving GPG key) - #57858 (Ignore line ending on older git versions) Failed merges: r? @ghost
bors
commented
Jan 24, 2019
☔ The latest upstream changes (presumably #57869) made this pull request unmergeable. Please resolve the merge conflicts. |
pnkfelix
commented
Jan 24, 2019
After T-compiler meeting, marking as beta-accepted. |
pnkfelix
commented
Jan 24, 2019
Discussed at T-compiler meeting. marking as stable-accepted. In particular, this PR on its own does not warrant a point release, but it is worth including in a hypothetical point release, should one happen. |
against a stock LLVM 7. LLVM 7 was released without a necessary fix
for a bug in the DWARF discriminant code.
This patch changes rustc to use the fallback mode on (non-Rust) LLVM 7.
Closes#57762