1
Fork 0

Fix cg_clif testing coretests

This commit is contained in:
bjorn3 2025-01-23 15:23:30 +00:00
parent b6a3841942
commit 9e5c6a2898
4 changed files with 11 additions and 56 deletions

View file

@ -10,21 +10,20 @@ Cranelift doesn't support them yet
library/core/tests/atomic.rs | 4 ---
4 files changed, 4 insertions(+), 50 deletions(-)
diff --git a/lib.rs b/lib.rs
diff --git a/tests/lib.rs b/tests/lib.rs
index 1e336bf..35e6f54 100644
--- a/lib.rs
+++ b/lib.rs
@@ -2,6 +2,5 @@
#![cfg(test)]
--- a/tests/lib.rs
+++ b/tests/lib.rs
@@ -2,5 +2,4 @@
// tidy-alphabetical-start
-#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
#![cfg_attr(test, feature(cfg_match))]
#![feature(alloc_layout_extra)]
#![feature(array_chunks)]
diff --git a/atomic.rs b/atomic.rs
diff --git a/tests/atomic.rs b/tests/atomic.rs
index b735957..ea728b6 100644
--- a/atomic.rs
+++ b/atomic.rs
--- a/tests/atomic.rs
+++ b/tests/atomic.rs
@@ -185,10 +185,6 @@ fn atomic_alignment() {
assert_eq!(align_of::<AtomicU64>(), size_of::<AtomicU64>());
#[cfg(target_has_atomic = "64")]