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 8 pull requests #125541

Merged
merged 20 commits into from
May 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
e7772f2
use posix_memalign on most Unix targets
RalfJung May 19, 2024
3c2d9c2
fix typo
RalfJung May 19, 2024
1eda580
Bump bootstrap compiler to the latest beta compiler
Urgau May 24, 2024
02eada8
Remove now outdated comment since we bumped stage0
Urgau May 24, 2024
9dc7620
Fail relating constants of different types
oli-obk May 23, 2024
d5eb7a7
Use regular type equating instead of a custom query
oli-obk May 23, 2024
3fe3157
Stop using the avx512er and avx512pf x86 target features
zmodem May 24, 2024
ebd9f35
remove proof tree formatter, make em shallow
lcnr May 24, 2024
1af490d
Better ICE message for unresolved upvars
compiler-errors May 24, 2024
61aac55
Structurally resolve before builtin_index in EUV
compiler-errors May 24, 2024
f4b9ac6
Add manual Sync impl for ReentrantLockGuard
programmerjake May 24, 2024
045f448
Don't eagerly monomorphize drop for types that are impossible to inst…
compiler-errors May 24, 2024
f28d368
Rollup merge of #125271 - RalfJung:posix_memalign, r=workingjubilee
matthiaskrgr May 25, 2024
7ea507e
Rollup merge of #125451 - oli-obk:const_type_mismatch, r=compiler-errors
matthiaskrgr May 25, 2024
e58a0a8
Rollup merge of #125478 - Urgau:check-cfg-config-bump-stage0, r=Mark-…
matthiaskrgr May 25, 2024
4d13c96
Rollup merge of #125498 - zmodem:avx512er, r=workingjubilee
matthiaskrgr May 25, 2024
00c51bd
Rollup merge of #125510 - lcnr:change-proof-trees-to-be-shallow, r=co…
matthiaskrgr May 25, 2024
3fc8fe0
Rollup merge of #125513 - compiler-errors:impossible-drop, r=jackh726
matthiaskrgr May 25, 2024
d747148
Rollup merge of #125514 - compiler-errors:builtin-index, r=lcnr
matthiaskrgr May 25, 2024
1d54ba8
Rollup merge of #125527 - programmerjake:patch-2, r=workingjubilee
matthiaskrgr May 25, 2024
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
Remove now outdated comment since we bumped stage0
  • Loading branch information
Urgau committed May 24, 2024
commit 02eada8f8dca08f42560063d99d87fc1c258fd7f
1 change: 0 additions & 1 deletion library/alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ optimize_for_size = ["core/optimize_for_size"]
level = "warn"
# x.py uses beta cargo, so `check-cfg` entries do not yet take effect
# for rust-lang/rust. But for users of `-Zbuild-std` it does.
# The unused warning is waiting for rust-lang/cargo#13925 to reach beta.
check-cfg = [
'cfg(bootstrap)',
'cfg(no_global_oom_handling)',
Expand Down
1 change: 0 additions & 1 deletion library/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ debug_refcell = []
level = "warn"
# x.py uses beta cargo, so `check-cfg` entries do not yet take effect
# for rust-lang/rust. But for users of `-Zbuild-std` it does.
# The unused warning is waiting for rust-lang/cargo#13925 to reach beta.
check-cfg = [
'cfg(bootstrap)',
'cfg(no_fp_fmt_parse)',
Expand Down
1 change: 0 additions & 1 deletion library/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ test = true
level = "warn"
# x.py uses beta cargo, so `check-cfg` entries do not yet take effect
# for rust-lang/rust. But for users of `-Zbuild-std` it does.
# The unused warning is waiting for rust-lang/cargo#13925 to reach beta.
check-cfg = [
'cfg(bootstrap)',
'cfg(target_arch, values("xtensa"))',
Expand Down
Loading