8000 Rollup of 8 pull requests by compiler-errors · Pull Request #118078 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 8 pull requests #118078

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
46 commits
Select commit Hold shift + click to select a range
5c81706
Add `type` field to json diagnostic outputs
jsgf Sep 9, 2023
62ad57b
Make sure nested Diagnostics in FutureIncompat are also typed for con…
jsgf Sep 9, 2023
54267dd
Document type field in json diagnostics.
jsgf Sep 9, 2023
00adbb2
Use serde_json::to_writer for JsonEmitter::emit
jsgf Sep 9, 2023
da3df9c
Add test for future-incompat diagnostics with json output
jsgf Sep 12, 2023
8f08458
Use `$message_type` as the tag
jsgf Oct 13, 2023
8aa4fb5
Update docs too
jsgf Oct 16, 2023
9f4f90b
Merge commit 'e4fe941b11a55c5005630696e9b6d81c65f7bd04' into subtree-…
antoyo Oct 26, 2023
ff57d70
Merge commit '09ce29d0591a21e1abae22eac4d41ffd32993af8' into subtree-…
antoyo Oct 27, 2023
249969c
Disable `master` feature by default when building rustc_codegen_gcc
GuillaumeGomez Oct 28, 2023
34e6386
Fix compilation errors in rustc_codegen_gcc examples
GuillaumeGomez Oct 28, 2023
a37446b
Fix config.sh script
GuillaumeGomez Oct 28, 2023
1075b80
Pass `--sysroot` option
GuillaumeGomez Oct 28, 2023
a13408d
Remove `libc` dependency in cg_gcc alloc_system example
GuillaumeGomez Oct 30, 2023
9149bec
Fix vector compilation error
antoyo Oct 25, 2023
f20f6bb
Merge pull request #368 from rust-lang/fix/vector-error
antoyo Nov 3, 2023
cc2af1f
Do not emit .eh_frame section when using -Cpanic=abort
antoyo Oct 25, 2023
551ea4b
Merge pull request #374 from rust-lang/fix/eh-frame
antoyo Nov 8, 2023
4dbfa4d
Set the .comment section
antoyo Oct 27, 2023
c6bc7ec
Merge pull request #377 from rust-lang/feature/comment-section
antoyo Nov 8, 2023
b2add8a
target_feature: make it more clear what that 'Option' means
RalfJung Nov 12, 2023
31493c7
interpret: simplify handling of shifts by no longer trying to handle …
RalfJung Nov 12, 2023
a8a2ee4
Recover `dyn` and `impl` after `for<...>`
compiler-errors Nov 14, 2023
f5e3492
Add arm64e-apple-ios target
arttet Nov 15, 2023
a787208
Add arm64e-apple-darwin target
arttet Nov 15, 2023
10127d9
set CLOEXEC on pidfd received from child process
the8472 Nov 16, 2023
3ffbb48
update comment, we're currently using a different syscall
the8472 Nov 16, 2023
a6493c1
Bump cfg(bootstrap)s
Mark-Simulacrum Nov 13, 2023
12efa53
if available use a Child's pidfd for kill/wait
the8472 Nov 16, 2023
0e8e60c
Merge branch 'master' into sync_from_rust_2023_11_17
antoyo Nov 17, 2023
4d8b25c
Update patch disabling portable-simd
antoyo Nov 17, 2023
a3b6444
Fix CI
antoyo Nov 18, 2023
f34e7f4
Don't set cmsg fields in msghdr if we have no cmsg to send
the8472 Nov 19, 2023
2e8386e
Merge pull request #387 from rust-lang/sync_from_rust_2023_11_17
antoyo Nov 19, 2023
13959bf
Avoid iterating over hashmaps in astconv
Noratrieb Nov 12, 2023
fa696af
Merge commit '2e8386e9fb3506cef991d04f8b3bc78f9a0c2630' into subtree-…
antoyo Nov 19, 2023
326f241
Pass TyCtxt by value
antoyo Nov 19, 2023
488dcb7
Ignore but do not assume region obligations from unifying headers in …
compiler-errors Nov 16, 2023
9eadd36
Rollup merge of #115526 - arttet:master, r=jackh726
compiler-errors Nov 20, 2023
d6e0380
Rollup merge of #115691 - jsgf:typed-json-diags, r=est31
compiler-errors Nov 20, 2023
a7eab90
Rollup merge of #117828 - Nilstrieb:astconv-hashmaps, r=petrochenkov
compiler-errors Nov 20, 2023
e95c3a3
Rollup merge of #117832 - RalfJung:interpret-shift, r=cjgillot
compiler-errors Nov 20, 2023
7df7567
Rollup merge of #117891 - compiler-errors:recover-for-dyn, r=davidtwco
compiler-errors Nov 20, 2023
e97ff13
Rollup merge of #117957 - the8472:pidfd-wait, r=Mark-Simulacrum
compiler-errors Nov 20, 2023
848de8e
Rollup merge of #117994 - compiler-errors:throw-away-regions-in-coher…
compiler-errors Nov 20, 2023
ad735c9
Rollup merge of #118068 - antoyo:subtree-update_cg_gcc_2023-11-17, r=…
compiler-errors Nov 20, 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
target_feature: make it more clear what that 'Option' means
  • Loading branch information
RalfJung committed Nov 12, 2023
commit b2add8a63e14787b50bd4f594118ed6393146edb
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ pub fn target_features(sess: &Session, allow_unstable: bool, target_info: &Locke
.iter()
.filter_map(
|&(feature, gate)| {
if sess.is_nightly_build() || allow_unstable || gate.is_none() { Some(feature) } else { None }
if sess.is_nightly_build() || allow_unstable || gate.is_stable() { Some(feature) } else { None }
},
)
.filter(|_feature| {
Expand Down
0