diff options
| author | Trevor Gross <t.gross35@gmail.com> | 2025-08-29 19:33:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-29 19:33:02 -0500 |
| commit | ed9e767c01ad257e4e86e40415aacf4019b64f7d (patch) | |
| tree | 6e4a5a4b86dd73c9e7d05ef16bcd3276e85a85d0 /tests | |
| parent | 19ae97622f7b3825fda95e704a174bcd5b0f2cf0 (diff) | |
| parent | b951b5dca116803b89380aae55ce9053a4674f31 (diff) | |
| download | rust-ed9e767c01ad257e4e86e40415aacf4019b64f7d.tar.gz rust-ed9e767c01ad257e4e86e40415aacf4019b64f7d.zip | |
Rollup merge of #145467 - Kivooeo:stabilize-strict_provenance_atomic_ptr, r=scottmcm
Stabilize `strict_provenance_atomic_ptr` feature
This closes [tracking issue](https://github.com/rust-lang/rust/issues/99108) and stabilises `AtomicPtr::{fetch_ptr_add, fetch_ptr_sub, fetch_byte_add, fetch_byte_sub, fetch_or, fetch_and, fetch_xor}`
---
EDIT: FCP completed at https://github.com/rust-lang/rust/issues/99108#issuecomment-3168260347
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/codegen-llvm/atomicptr.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/codegen-llvm/atomicptr.rs b/tests/codegen-llvm/atomicptr.rs index ce6c4aa0d2b..9d5e618fe76 100644 --- a/tests/codegen-llvm/atomicptr.rs +++ b/tests/codegen-llvm/atomicptr.rs @@ -6,7 +6,6 @@ //@ compile-flags: -Copt-level=3 -Cno-prepopulate-passes #![crate_type = "lib"] -#![feature(strict_provenance_atomic_ptr)] use std::ptr::without_provenance_mut; use std::sync::atomic::AtomicPtr; |
