Skip to content

Rollup of 11 pull requests #47339

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 26 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b5a3f56
Update musl to 1.1.18
malbarbo Jan 8, 2018
b1c9b6e
Update jobserver to 0.1.9
cuviper Jan 9, 2018
a713c67
Skip linker-output-non-utf8 test on Apple
etaoins Jan 9, 2018
7b420cf
Treat #[path] files as mod.rs files
cramertj Jan 9, 2018
4cc0fe5
Restore the original Window comment
etaoins Jan 9, 2018
b69c320
Fix typo
etaoins Jan 9, 2018
ce4673d
Use copy/clone closures to simplify calendar test
cramertj Jan 10, 2018
d0d5db6
fix typo rwlock.rs
bmusin Jan 10, 2018
00ce7ee
resolve type and region variables in "NLL dropck"
nikomatsakis Jan 10, 2018
44912bf
Pre-allocate in fs::read and fs::read_string
mbrubeck Jan 10, 2018
c78679d
Fix panic strings.
dlrobertson Jan 10, 2018
3f9c057
Use the new fs_read_write functions in rustc internals
mbrubeck Jan 10, 2018
9d9504a
Fix typo.
Jan 10, 2018
9649c4a
Add tests to fixed issues.
topecongiro Jan 11, 2018
173ab34
Rollup merge of #47283 - malbarbo:musl-1.1.18, r=alexcrichton
kennytm Jan 11, 2018
213bbde
Rollup merge of #47288 - cuviper:jobserver-pipe2, r=alexcrichton
kennytm Jan 11, 2018
55d27c8
Rollup merge of #47289 - etaoins:skip-linker-output-non-utf8-test-on-…
kennytm Jan 11, 2018
0323654
Rollup merge of #47298 - cramertj:path-as-modrs, r=nikomatsakis
kennytm Jan 11, 2018
c0dc4c5
Rollup merge of #47305 - cramertj:better-calendar-alone, r=eddyb
kennytm Jan 11, 2018
b95f18f
Rollup merge of #47307 - dlrobertson:fix_panic_strings, r=kennytm
kennytm Jan 11, 2018
2f43a2b
Rollup merge of #47310 - bmusin:patch-1, r=sfackler
kennytm Jan 11, 2018
56e8f5d
Rollup merge of #47322 - nikomatsakis:nll-ice, r=pnkfelix
kennytm Jan 11, 2018
da0e548
Rollup merge of #47324 - mbrubeck:len, r=sfackler
kennytm Jan 11, 2018
ab73129
Rollup merge of #47328 - mbrubeck:fs_read, r=sfackler
kennytm Jan 11, 2018
b256b83
Rollup merge of #47340 - alercah:typo-fix, r=GuillaumeGomez
kennytm Jan 11, 2018
4551f3a
Rollup merge of #47344 - topecongiro:fixed-ices, r=alexcrichton
kennytm Jan 11, 2018
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: 1 addition & 1 deletion src/librustc/lint/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ pub fn check_ast_crate(sess: &Session, krate: &ast::Crate) {
// calculated the lint levels for all AST nodes.
for (_id, lints) in cx.buffered.map {
for early_lint in lints {
span_bug!(early_lint.span, "failed to process bufferd lint here");
span_bug!(early_lint.span, "failed to process buffered lint here");
}
}
}
Expand Down