Skip to content

Commit

Permalink
Rollup merge of #94730 - msabansal:sabansal/b-atomic-mut-ptr, r=Dylan…
Browse files Browse the repository at this point in the history
…-DPC

Reverted atomic_mut_ptr feature removal causing compilation break

Fixes a regression introduced as part of #94546

Std no longer compiles on nightly while using the following commnd:

export RUSTFLAGS='-C target-feature=+atomics,+bulk-memory'
cargo build --target wasm32-unknown-unknown -Z build-std=panic_abort,std

I can help add tests to avoid future breaks but i couldn't understand the test framework
  • Loading branch information
Dylan-DPC authored Mar 8, 2022
2 parents a67b629 + d8e75bc commit 5629026
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions library/std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@
#![feature(assert_matches)]
#![feature(associated_type_bounds)]
#![feature(async_iterator)]
#![feature(atomic_mut_ptr)]
#![feature(bench_black_box)]
#![feature(box_syntax)]
#![feature(c_unwind)]
Expand Down

0 comments on commit 5629026

Please sign in to comment.