8000 Rollup of 8 pull requests by Dylan-DPC-zz · Pull Request #68971 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 8 pull requests #68971

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 45 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
bdacdf4
Remove unused core_intrinsics feature gate from bootstrap
bjorn3 Nov 17, 2019
095963f
Remove unused feature gates from librustc
bjorn3 Nov 17, 2019
f9971c5
Remove unused feature gates from cg_llvm
bjorn3 Nov 17, 2019
c2da8b3
Remove unused feature gates from cg_ssa and cg_utils
bjorn3 Nov 17, 2019
2a4596a
Remove unused feature gates from librustc_data_structures
bjorn3 Nov 17, 2019
cf862df
Remove unused feature gates from librustc_driver
bjorn3 Nov 17, 2019
3e61d52
Remove unused feature gates from librustc_errors
bjorn3 Nov 17, 2019
c00d8aa
Reorder declarations of Result::export/unwrap to match Option
brson Feb 5, 2020
db9b578
Reorder declarations of Result::expect_err/unwrap_err to match Option
brson Feb 5, 2020
8251e12
Don't use the word 'unwrap' to describe core unwrapping functions
brson Feb 7, 2020
d252791
Remove unused feature gate from librustc_incremental
bjorn3 Nov 17, 2019
6638b86
Remove unused feature gates from librustc_interface
bjorn3 Nov 17, 2019
74994af
Remove unused feature gate from librustc_lint
bjorn3 Nov 17, 2019
6305c68
Remove unused feature gates from librustc_metadata
bjorn3 Nov 17, 2019
341594e
Remove unused feature gates from librustc_mir
bjorn3 Nov 17, 2019
1bfba4f
Remove unused feature gate from librustc_resolve
bjorn3 Nov 17, 2019
1a26c1c
Remove unused feature gate from librustc_target
bjorn3 Nov 17, 2019
8f672cd
Remove unused feature gates from librustc_typeck
bjorn3 Nov 17, 2019
b759999
Remove unused feature gates from librustdoc
bjorn3 Nov 17, 2019
9d6bdcc
Remove unused feature gate from libserialize
bjorn3 Nov 17, 2019
91d01e7
Remove unused feature gates from libsyntax_pos
bjorn3 Nov 17, 2019
e386656
Rustfmt
bjorn3 Dec 23, 2019
5827d78
Fix test
bjorn3 Jan 25, 2020
73936ab
print generic bounds on associated types
basil-cow Feb 7, 2020
ab6ea2b
add regression test
basil-cow Feb 7, 2020
bf82582
add hir printing
basil-cow Feb 7, 2020
66fd4e6
Make `associated_items` query return a slice
jonas-schievink Feb 6, 2020
f416573
Use `associated_items` query in impl overlap check
jonas-schievink Feb 6, 2020
52f7711
Add a fast path to inherent impl overlap check
jonas-schievink Feb 6, 2020
e0cb1ae
Make `provided_trait_methods` use `impl Iterator`
jonas-schievink Feb 7, 2020
58a9284
Add missing import
jonas-schievink Feb 8, 2020
1177d06
Clean up E0277 and E0282 explanations
GuillaumeGomez Feb 8, 2020
d6ccbf6
rustc_codegen_llvm: remove unnecessary special-casing of root scopes'…
eddyb Feb 8, 2020
1385fc4
rustc_codegen_llvm: remove InternalDebugLocation and simplify dbg_var…
eddyb Feb 8, 2020
bdb72e7
rustc_codegen_ssa: remove unnecessary source_locations_enabled.
eddyb Feb 8, 2020
4ac468c
Mark several functions and methods in core::cmp as #[must_use]
mjbshaw Feb 8, 2020
619051e
Move librustc_hir/def_id.rs to librustc_span/def_id.rs
Aaron1011 Feb 8, 2020
57b72b8
Rollup merge of #66498 - bjorn3:less_feature_flags, r=Dylan-DPC
Dylan-DPC Feb 8, 2020
3a8f125
Rollup merge of #68718 - Aaron1011:move-def-hir-span, r=petrochenkov
Dylan-DPC Feb 8, 2020
c3bd20a
Rollup merge of #68911 - jonas-schievink:inherent-overlap, r=petroche…
Dylan-DPC Feb 8, 2020
699fc5f
Rollup merge of #68913 - Areredify:gat_pretty, r=cramertj
Dylan-DPC Feb 8, 2020
43137f4
Rollup merge of #68918 - brson:unwrapdoc, r=Dylan-DPC
Dylan-DPC Feb 8, 2020
b495246
Rollup merge of #68946 - mjbshaw:must_use, r=mjbshaw
Dylan-DPC Feb 8, 2020
9f38e14
Rollup merge of #68958 - GuillaumeGomez:clean-up-e0277-e0282, r=Dylan…
Dylan-DPC Feb 8, 2020
2737732
Rollup merge of #68960 - eddyb:llvm-dbg-cleanup, r=nagisa
Dylan-DPC Feb 8, 2020
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
Next Next commit
Remove unused core_intrinsics feature gate from bootstrap
  • Loading branch information
bjorn3 committed Feb 4, 2020
commit bdacdf49e532ce869d1eb96e967fd77991566a7f
1 change: 0 additions & 1 deletion src/bootstrap/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
//! More documentation can be found in each respective module below, and you can
//! also check out the `src/bootstrap/README.md` file for more information.

#![feature(core_intrinsics)]
#![feature(drain_filter)]

use std::cell::{Cell, RefCell};
Expand Down
0