Skip to content

Commit 5746e18

Browse files
committed
merge
2 parents c6cecce + ebe8dd1 commit 5746e18

File tree

247 files changed

+10626
-3453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

247 files changed

+10626
-3453
lines changed

library/Cargo.lock

+10-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

library/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ members = [
88
exclude = [
99
# stdarch has its own Cargo workspace
1010
"stdarch",
11+
"windows_targets"
1112
]
1213

1314
[profile.release.package.compiler_builtins]
@@ -30,8 +31,10 @@ codegen-units = 10000
3031
# helps to improve link times a little bit.
3132
[profile.release.package]
3233
addr2line.debug = 0
34+
addr2line.opt-level = "s"
3335
adler.debug = 0
3436
gimli.debug = 0
37+
gimli.opt-level = "s"
3538
miniz_oxide.debug = 0
3639
object.debug = 0
3740
rustc-demangle.debug = 0

library/alloc/Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ edition = "2021"
1010

1111
[dependencies]
1212
core = { path = "../core" }
13-
compiler_builtins = { version = "0.1.114", features = ['rustc-dep-of-std'] }
14-
15-
[target.'cfg(not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")))'.dependencies]
16-
compiler_builtins = { version = "0.1.114", features = ["no-f16-f128"] }
13+
compiler_builtins = { version = "0.1.123", features = ['rustc-dep-of-std'] }
1714

1815
[dev-dependencies]
1916
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
@@ -55,4 +52,5 @@ check-cfg = [
5552
'cfg(no_global_oom_handling)',
5653
'cfg(no_rc)',
5754
'cfg(no_sync)',
55+
'cfg(randomized_layouts)',
5856
]

library/alloc/benches/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// Disabling on android for the time being
2-
// See https://github.com/rust-lang/rust/issues/73535#event-3477699747
3-
#![cfg(not(target_os = "android"))]
41
// Disabling in Miri as these would take too long.
52
#![cfg(not(miri))]
63
#![feature(btree_extract_if)]

library/alloc/src/alloc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,7 @@ extern "Rust" {
372372
#[rustc_const_unstable(feature = "const_alloc_error", issue = "92523")]
373373
#[cfg(all(not(no_global_oom_handling), not(test)))]
374374
#[cold]
375+
#[optimize(size)]
375376
pub const fn handle_alloc_error(layout: Layout) -> ! {
376377
const fn ct_error(_: Layout) -> ! {
377378
panic!("allocation failed");

0 commit comments

Comments
 (0)