Skip to content

Rollup of 10 pull requests #106654

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
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
76438d2
Add example for iterator_flatten
HintringerFabian Nov 28, 2022
083560b
Add result example + rewording
HintringerFabian Dec 13, 2022
11331b1
Enable atomic cas for bpf targets
tomerze Nov 26, 2022
564435f
Suppress suggestions for nested use tree
compiler-errors Dec 27, 2022
9e2536b
Note alternative import candidates in nested use tree
compiler-errors Dec 27, 2022
d2404d6
Dont clobber `as ..` rename in import suggestion
compiler-errors Dec 27, 2022
050bc95
Fix some totally useless suggestions
compiler-errors Dec 27, 2022
ecdf7f0
Reuse ErrorGuaranteed during relation
compiler-errors Dec 30, 2022
db6d3b3
Filter impl and where-clause candidates that reference errors
compiler-errors Jan 1, 2023
6b01b35
Forbid #[suggestion_*(...)] on Vecs
Xiretza Oct 16, 2022
3e2ae86
rustc_parse: avoid creating unnecessary intermediate strings
Xiretza Dec 27, 2022
58edd7f
Use AddToDiagnostic for "use latest edition" help
Xiretza Oct 5, 2022
27c0c46
Implement IntoDiagnosticArg for ast::Visibility
Xiretza Oct 5, 2022
f94a148
Fix condition for "missing `struct`" diagnostic on tuple structs
Xiretza Oct 6, 2022
5783b8c
tests: rename test cases to match new behaviour
Xiretza Dec 27, 2022
e5282a8
rustc_parse: migrate more to diagnostic structs
Xiretza Oct 14, 2022
e4e17a3
Convert rustc_parse::parser::pat::Expected to enum
Xiretza Nov 8, 2022
5167ca8
migrate parser::ty to diagnostic structs
Xiretza Oct 18, 2022
a37ff4c
rustc_parse: revert conversion of "non-item in item list" diagnostic
Xiretza Dec 13, 2022
02141b6
Make "use latest edition" subdiagnostic translatable
Xiretza Dec 28, 2022
c364d32
Relocate changes
HintringerFabian Jan 9, 2023
31099ee
update test for inductive canonical cycles
lcnr Jan 9, 2023
42aa075
Accept old spelling of Fuchsia target triples
djkoloski Jan 9, 2023
a51a592
Render missing generics suggestion verbosely
compiler-errors Jan 8, 2023
5132e13
No need to take opaques in check_type_bounds
compiler-errors Dec 24, 2022
7c2dff0
Don't suggest dyn as parameter to add
compiler-errors Jan 8, 2023
1d66a67
review comment
compiler-errors Jan 9, 2023
1c766d0
rustdoc: merge common CSS for `a`
notriddle Jan 9, 2023
f769d34
Assert defining anchor is set in take_opaque_types
compiler-errors Jan 9, 2023
9c23629
Add issue number to FIXMEs
tmandry Jan 9, 2023
4adf99b
Rollup merge of #105034 - HintringerFabian:improve_iterator_flatten_d…
compiler-errors Jan 9, 2023
eb22a06
Rollup merge of #105670 - Xiretza:rustc_parse-diagnostics-4, r=davidtwco
compiler-errors Jan 9, 2023
03dc5c9
Rollup merge of #105708 - tomerze:enable-atomic-cas-bpf, r=nagisa
compiler-errors Jan 9, 2023
91d750d
Rollup merge of #106175 - compiler-errors:bad-import-sugg, r=oli-obk
compiler-errors Jan 9, 2023
1e81ca3
Rollup merge of #106204 - compiler-errors:no-take-opaques-in-compare,…
compiler-errors Jan 9, 2023
500261f
Rollup merge of #106309 - compiler-errors:prefer-non-err-candidates, …
compiler-errors Jan 9, 2023
32aeb3f
Rollup merge of #106608 - compiler-errors:missing-generics-verbose, r…
compiler-errors Jan 9, 2023
3f9a928
Rollup merge of #106636 - djkoloski:accept_old_fuchsia_triple, r=tmandry
compiler-errors Jan 9, 2023
b13c1eb
Rollup merge of #106640 - lcnr:update-test, r=jackh726
compiler-errors Jan 9, 2023
312ad66
Rollup merge of #106647 - notriddle:notriddle/a, r=GuillaumeGomez
compiler-errors Jan 9, 2023
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 issue number to FIXMEs
  • Loading branch information
tmandry authored Jan 9, 2023
commit 9c23629158d863068f51a7f316dbe15a76d7e602
4 changes: 2 additions & 2 deletions compiler/rustc_target/src/spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1109,10 +1109,10 @@ supported_targets! {
("x86_64-apple-darwin", x86_64_apple_darwin),
("i686-apple-darwin", i686_apple_darwin),

// FIXME(fuchsia): Remove aarch64-fuchsia in favor of aarch64-unknown-fuchsia
// FIXME(#106649): Remove aarch64-fuchsia in favor of aarch64-unknown-fuchsia
("aarch64-fuchsia", aarch64_fuchsia),
("aarch64-unknown-fuchsia", aarch64_unknown_fuchsia),
// FIXME(fuchsia): Remove x86_64-fuchsia in favor of x86_64-unknown-fuchsia
// FIXME(#106649): Remove x86_64-fuchsia in favor of x86_64-unknown-fuchsia
("x86_64-fuchsia", x86_64_fuchsia),
("x86_64-unknown-fuchsia", x86_64_unknown_fuchsia),

Expand Down