Skip to content

Rollup of 11 pull requests #88853

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

Closed
wants to merge 42 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
07988bb
Reword description of automatic impls of `Unsize`.
kpreid Aug 10, 2021
2884a74
Fix non-capturing closure return type coercion
FabianWolff Aug 18, 2021
4d6bfde
Improve error message when _ is used for in/inout asm operands
Amanieu Aug 21, 2021
bbe3be9
Add explanatory comment
FabianWolff Aug 31, 2021
cd75af2
Change more x64 size checks to not apply to x32.
hvdijk Sep 5, 2021
04db063
Don't build the library and standard library before documenting them
jyn514 Sep 5, 2021
e2d01ed
Simplify std::os module reexports to fix rustdoc linking issues
GuillaumeGomez Sep 3, 2021
2987f4b
WIP state
BoxyUwU Sep 6, 2021
9b29138
as casts and block exprs
BoxyUwU Sep 6, 2021
4483c2b
dont support blocks
BoxyUwU Sep 6, 2021
47b16f4
bless stderr
BoxyUwU Sep 6, 2021
c170dcf
tidy
BoxyUwU Sep 6, 2021
08e8644
move thir visitor to rustc_middle
BoxyUwU Sep 6, 2021
fc63e9a
dont build abstract const for monomorphic consts
BoxyUwU Sep 6, 2021
4cbcb09
handle `ExprKind::NeverToAny`
BoxyUwU Sep 6, 2021
1f57f8b
remove `WorkNode`
BoxyUwU Sep 6, 2021
15101c8
remove debug stmts
BoxyUwU Sep 7, 2021
406d2ab
rename mir -> thir around abstract consts
BoxyUwU Sep 7, 2021
79be080
remove comment
BoxyUwU Sep 7, 2021
955e2b2
nits
BoxyUwU Sep 7, 2021
8c7954d
add a `CastKind` to `Node::Cast`
BoxyUwU Sep 7, 2021
3212734
resolve `from_hir_call` FIXME
BoxyUwU Sep 7, 2021
cd2915e
fmt
BoxyUwU Sep 7, 2021
fd9bb30
CI please
BoxyUwU Sep 7, 2021
dc02b51
Use more accurate spans for "unused delimiter" lint
estebank Sep 9, 2021
8295e4a
add test for builtin types N + N unifying with fn call
BoxyUwU Sep 9, 2021
64354a9
Remove usage of cfg_if in std/src/os/mod.rs
GuillaumeGomez Sep 3, 2021
88d5aa6
Move fortanix module position in std::os reexports for alpha sort
GuillaumeGomez Sep 7, 2021
c9a56cd
Add help for E0463
GuillaumeGomez Sep 10, 2021
294510e
rustc: Remove local variable IDs from `Export`s
petrochenkov Sep 5, 2021
c1e9608
don't clone types that are Copy (clippy::clone_on_copy)
matthiaskrgr Sep 11, 2021
6bb3d49
Rollup merge of #87904 - kpreid:unsize, r=jyn514
GuillaumeGomez Sep 11, 2021
08a9a18
Rollup merge of #88147 - FabianWolff:issue-88097, r=jackh726
GuillaumeGomez Sep 11, 2021
45ddb49
Rollup merge of #88209 - Amanieu:asm_in_underscore, r=nagisa
GuillaumeGomez Sep 11, 2021
e0f6ff4
Rollup merge of #88619 - GuillaumeGomez:simplify-std-os-reexports, r=…
GuillaumeGomez Sep 11, 2021
0a78428
Rollup merge of #88668 - hvdijk:x32, r=joshtriplett
GuillaumeGomez Sep 11, 2021
d7ff5a5
Rollup merge of #88675 - jyn514:faster-doc, r=Mark-Simulacrum
GuillaumeGomez Sep 11, 2021
a2091c5
Rollup merge of #88677 - petrochenkov:exportid, r=davidtwco
GuillaumeGomez Sep 11, 2021
23346ea
Rollup merge of #88709 - BoxyUwU:thir-abstract-const, r=lcnr
GuillaumeGomez Sep 11, 2021
1f8134d
Rollup merge of #88779 - estebank:unused-delims, r=davidtwco
GuillaumeGomez Sep 11, 2021
70cf474
Rollup merge of #88830 - GuillaumeGomez:help-e0463, r=estebank
GuillaumeGomez Sep 11, 2021
400ac6e
Rollup merge of #88849 - matthiaskrgr:clony_on_copy, r=petrochenkov
GuillaumeGomez Sep 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add help for E0463
  • Loading branch information
GuillaumeGomez committed Sep 10, 2021
commit c9a56cdc58bbb51ece4510f4e54ef2fe26b7b771
5 changes: 5 additions & 0 deletions compiler/rustc_metadata/src/locator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,11 @@ impl CrateError {
== Symbol::intern(&sess.opts.debugging_opts.profiler_runtime)
{
err.note(&"the compiler may have been built without the profiler runtime");
} else if crate_name.as_str().starts_with("rustc_") {
err.help(
"maybe you need to install the missing components with: \
`rustup component add rust-src rustc-dev llvm-tools-preview`",
);
}
err.span_label(span, "can't find crate");
err
Expand Down