Skip to content
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

Rollup of 9 pull requests #78451

Closed
wants to merge 37 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9dadcf8
`warn` -> `debug` in collect
lcnr Oct 25, 2020
0e419ef
check for object safety violations in constants
lcnr Oct 25, 2020
00abef1
libc: 0.2.79 -> 0.2.80
nagisa Oct 25, 2020
8546a80
add fixme
lcnr Oct 26, 2020
60bcc58
debug log `AbstractConst::new`
lcnr Oct 26, 2020
0cf3ce4
build-manifest: refactor checksum generation into a struct
pietroalbini Oct 26, 2020
174ed0c
Remove tokens from foreign items in `TokenStripper`
Aaron1011 Oct 26, 2020
c2f4bbd
build-manifest: add BUILD_MANIFEST_CHECKSUM_CACHE
pietroalbini Oct 26, 2020
53fa22a
Fix some outdated comments
nox Oct 26, 2020
a3623e0
rustc_span: avoid hashing ExpnId tag when using cached hash
tgnottingham Sep 21, 2020
8cf1b0e
Uplift temporary-cstring-as-ptr into rustc
nathanwhit Aug 18, 2020
a2f4afe
Add basic test
nathanwhit Aug 18, 2020
8b65df0
Address review comments
nathanwhit Aug 18, 2020
ce95122
Update doctest
nathanwhit Aug 18, 2020
5643a06
Tweak diagnostic
nathanwhit Aug 18, 2020
737bfef
Change to warn by default / fix typo
nathanwhit Aug 23, 2020
1bcd245
Address review comments
nathanwhit Sep 21, 2020
576eb2a
Write docs for lint / fix review nit
nathanwhit Sep 22, 2020
5ac1688
Remove lint from clippy
nathanwhit Sep 22, 2020
6ba127d
Fix doctest
nathanwhit Sep 22, 2020
0569422
Implement -Z function-sections=yes|no
nox Oct 26, 2020
cb8b901
Address review comments
nathanwhit Oct 26, 2020
39941e6
Fix bootstrap doctest failure
nathanwhit Oct 27, 2020
650e3cb
Prefer new associated numeric consts in float error messages
Rustin170506 Oct 27, 2020
572cd35
Fix test
nathanwhit Oct 27, 2020
da64d07
Fix typo in comment
bugadani Oct 27, 2020
99320b9
Fix typos in arena comments
bugadani Oct 27, 2020
b01c74b
Fix typo in vec_graph
bugadani Oct 27, 2020
b2e935d
Rollup merge of #75671 - nathanwhit:cstring-temp-lint, r=oli-obk
jonas-schievink Oct 27, 2020
3861024
Rollup merge of #78365 - lcnr:const-eval-obj-safety, r=oli-obk
jonas-schievink Oct 27, 2020
3e49068
Rollup merge of #78378 - nagisa:nagisa/libc-up, r=Mark-Simulacrum
jonas-schievink Oct 27, 2020
944a4b0
Rollup merge of #78408 - Aaron1011:fix/remove-foreign-tokens, r=oli-obk
jonas-schievink Oct 27, 2020
163b322
Rollup merge of #78409 - pietroalbini:build-manifest-checksum-cache, …
jonas-schievink Oct 27, 2020
f29e191
Rollup merge of #78414 - nox:function-sections, r=nagisa,bjorn3
jonas-schievink Oct 27, 2020
afbc67b
Rollup merge of #78415 - tgnottingham:expn_id_tag_hash, r=Aaron1011
jonas-schievink Oct 27, 2020
2ddaa60
Rollup merge of #78431 - Rustin-Liu:rustin-patch-lint, r=estebank
jonas-schievink Oct 27, 2020
733e3c5
Rollup merge of #78447 - bugadani:typo, r=matthewjasper
jonas-schievink Oct 27, 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
6 changes: 3 additions & 3 deletions compiler/rustc_session/src/options.rs
Original file line number Diff line number Diff line change
@@ -717,7 +717,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
// This list is in alphabetical order.
//
// If you add a new option, please update:
// - src/librustc_interface/tests.rs
// - compiler/rustc_interface/src/tests.rs
// - src/doc/rustc/src/codegen-options/index.md

ar: String = (String::new(), parse_string, [UNTRACKED],
@@ -814,7 +814,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
// This list is in alphabetical order.
//
// If you add a new option, please update:
// - src/librustc_interface/tests.rs
// - compiler/rustc_interface/src/tests.rs
// - src/doc/rustc/src/codegen-options/index.md
}

@@ -825,7 +825,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
// This list is in alphabetical order.
//
// If you add a new option, please update:
// - src/librustc_interface/tests.rs
// - compiler/rustc_interface/src/tests.rs

allow_features: Option<Vec<String>> = (None, parse_opt_comma_list, [TRACKED],
"only allow the listed language features to be enabled in code (space separated)"),