diff options
| author | bors <bors@rust-lang.org> | 2024-03-30 04:36:09 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-30 04:36:09 +0000 |
| commit | 174d07b539eaafed82f098d5ec86713312aa02c3 (patch) | |
| tree | f8cf4b92803fcf54e55b3e42b02ae39f3972510c /src | |
| parent | 69fa40cb48384fad7930dce2d9a20d18fe4d1b51 (diff) | |
| parent | ea92faec491084849f9c2fb258a0e3161bb29ae4 (diff) | |
| download | rust-174d07b539eaafed82f098d5ec86713312aa02c3.tar.gz rust-174d07b539eaafed82f098d5ec86713312aa02c3.zip | |
Auto merge of #121948 - Gankra:stab-align, r=dtolnay
stabilize ptr.is_aligned, move ptr.is_aligned_to to a new feature gate This is an alternative to #121920
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/miri/tests/pass-dep/shims/posix_memalign.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/tests/pass-dep/shims/posix_memalign.rs b/src/tools/miri/tests/pass-dep/shims/posix_memalign.rs index 5cf62995fbe..db66b213416 100644 --- a/src/tools/miri/tests/pass-dep/shims/posix_memalign.rs +++ b/src/tools/miri/tests/pass-dep/shims/posix_memalign.rs @@ -1,6 +1,6 @@ //@ignore-target-windows: No libc on Windows -#![feature(pointer_is_aligned)] +#![feature(pointer_is_aligned_to)] #![feature(strict_provenance)] use core::ptr; |
