8000 Rollup of 11 pull requests by JohnTitor · Pull Request #69088 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 11 pull requests #69088

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

Merged
merged 45 commits into from
Feb 12, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3998249
remove unnecessary local variable assignment in context manager
chrissimpkins Feb 8, 2020
19aaf63
PEP8 format spacing
chrissimpkins Feb 8, 2020
6ce8d2b
PEP8 format spacing
chrissimpkins Feb 8, 2020
adde3d4
PEP8 format spacing
chrissimpkins Feb 8, 2020
60889d4
remove unnecessary semicolons
chrissimpkins Feb 8, 2020
e30dd86
PEP8 format spacing
chrissimpkins Feb 8, 2020
f38e270
remove unnecessary sys import
chrissimpkins Feb 8, 2020
d366343
PEP8 format spacing
chrissimpkins Feb 8, 2020
a53f45f
PEP8 format spacing, split import statements
chrissimpkins Feb 8, 2020
8d04b95
remove unnecessary import statement
chrissimpkins Feb 8, 2020
85e3661
PEP8 format spacing, remove unnecessary local variable assignment
chrissimpkins Feb 8, 2020
814aa06
PEP8 format spacing
chrissimpkins Feb 8, 2020
9b10fc4
remove unnecessary import statement, PEP8 format spacing
chrissimpkins Feb 8, 2020
77d158d
shorten comment blocks to < 100 characters
chrissimpkins Feb 8, 2020
25de80a
Remove common usage pattern from `AllocRef`
TimDiekmann Feb 10, 2020
97d1f8d
Add missing `_zeroed` varants to `AllocRef`
TimDiekmann Feb 10, 2020
a47fdb9
Support linking from a .rlink file
Jan 23, 2020
76aa29f
Preparation for allocator aware `Box`
TimDiekmann Feb 11, 2020
3b23d22
remove some dependencies on itertools
andjo403 Feb 11, 2020
3884311
Add self to .mailmap
Bassetts Feb 11, 2020
8e26ad0
Keyword docs
Feb 11, 2020
60aaf90
Move macro enum_from_u32 to rustc_data_structures.
cjgillot Jan 30, 2020
a056817
Move hir::check_attr::Target to librustc_lang_items.
cjgillot Jan 26, 2020
ff36923
Move lang_items definitions to librustc_lang_items.
cjgillot Jan 26, 2020
c04195d
Move get_lang_items query in librustc_passes.
cjgillot Jan 31, 2020
4ecba94
Move weak lang items to librustc_lang_items.
cjgillot Jan 26, 2020
98b46f7
Move weak_lang_items.rs to librustc_passes.
cjgillot Jan 1, 2020
b6f875d
Move weak_lang_items checking to librustc_passes.
cjgillot Dec 28, 2019
443a42a
Nits.
cjgillot Jan 26, 2020
d3b2385
Move it all into rustc_hir.
cjgillot Jan 30, 2020
513eb74
Merge rustc::middle::*lang_items.
cjgillot Jan 30, 2020
fc73e19
Review comments.
cjgillot Feb 11, 2020
ee52fe6
Test failure of unchecked arithmetic intrinsics in const eval
ecstatic-morse Feb 10, 2020
c1ed84e
Fix outdated doc comment.
jumbatm Feb 11, 2020
b6a9aa9
Rollup merge of #67695 - gilescope:truth, r=centril
JohnTitor Feb 12, 2020
344f8d9
Rollup merge of #68487 - 0dvictor:nolink, r=tmandry
JohnTitor Feb 12, 2020
19b0c00
Rollup merge of #68554 - cjgillot:lang_items, r=Zoxc
JohnTitor Feb 12, 2020
4b82b51
Rollup merge of #68937 - ecstatic-morse:unchecked-intrinsics-test, r=…
JohnTitor Feb 12, 2020
931005d
Rollup merge of #68947 - chrissimpkins:python-fmt, r=alexcrichton
JohnTitor Feb 12, 2020
9b51a52
Rollup merge of #68999 - andjo403:itertools, r=Centril
JohnTitor Feb 12, 2020
9bc003d
Rollup merge of #69026 - TimDiekmann:common-usage, r=Amanieu
JohnTitor Feb 12, 2020
a50ccd9
Rollup merge of #69027 - TimDiekmann:zeroed-alloc, r=Amanieu
JohnTitor Feb 12, 2020
5fbfaac
Rollup merge of #69058 - TimDiekmann:box, r=Amanieu
JohnTitor Feb 12, 2020
77a3245
Rollup merge of #69070 - Bassetts:master, r=alexcrichton
JohnTitor Feb 12, 2020
486856f
Rollup merge of #69077 - jumbatm:fix-comment, r=Dylan-DPC
JohnTitor Feb 12, 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
2 changes: 0 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3750,7 +3750,6 @@ dependencies = [
name = "rustc_macros"
version = "0.1.0"
dependencies = [
"itertools 0.8.0",
"proc-macro2 1.0.3",
"quote 1.0.2",
"syn 1.0.11",
Expand Down Expand Up @@ -3814,7 +3813,6 @@ name = "rustc_mir_build"
version = "0.0.0"
dependencies = [
"arena",
"itertools 0.8.0",
"log",
"rustc",
"rustc_apfloat",
Expand Down
1 change: 0 additions & 1 deletion src/librustc_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ synstructure = "0.12.1"
syn = { version = "1", features = ["full"] }
proc-macro2 = "1"
quote = "1"
itertools = "0.8"
6 changes: 1 addition & 5 deletions src/librustc_macros/src/query.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use itertools::Itertools;
use proc_macro::TokenStream;
use proc_macro2::{Delimiter, TokenTree};
use quote::quote;
Expand Down Expand Up @@ -469,10 +468,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
attributes.push(quote! { eval_always });
};

let mut attribute_stream = quote! {};
for e in attributes.into_iter().intersperse(quote! {,}) {
attribute_stream.extend(e);
}
let attribute_stream = quote! {#(#attributes),*};

// Add the query to the group
group_stream.extend(quote! {
Expand Down
1 change: 0 additions & 1 deletion src/librustc_mir_build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ doctest = false

[dependencies]
arena = { path = "../libarena" }
itertools = "0.8"
log = "0.4"
rustc = { path = "../librustc" }
rustc_apfloat = { path = "../librustc_apfloat" }
Expand Down
0