Skip to content

Commit d37f6d8

Browse files
committed
Fix rustc tests
1 parent 8a5eecc commit d37f6d8

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: patches/0027-stdlib-128bit-atomic-operations.patch

+13
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ index d9de37e..8293fce 100644
8282
#[cfg(target_has_atomic_load_store = "ptr")]
8383
macro_rules! atomic_int_ptr_sized {
8484
( $($target_pointer_width:literal $align:literal)* ) => { $(
85+
diff --git a/library/core/src/cell.rs b/library/core/src/cell.rs
86+
index 58b9ba4..91bbd0a 100644
87+
--- a/library/core/src/cell.rs
88+
+++ b/library/core/src/cell.rs
89+
@@ -2246,8 +2246,6 @@ unsafe_cell_primitive_into_inner! {
90+
u32 "32"
91+
i64 "64"
92+
u64 "64"
93+
- i128 "128"
94+
- u128 "128"
95+
isize "ptr"
96+
usize "ptr"
97+
}
8598
--
8699
2.26.2.7.g19db9cfb68
87100

Diff for: scripts/test_rustc_tests.sh

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ rm -r tests/run-make/fmt-write-bloat/ # tests an optimization
8484
# ======================
8585
rm tests/incremental/thinlto/cgu_invalidated_when_import_{added,removed}.rs # requires LLVM
8686
rm -r tests/run-make/cross-lang-lto # same
87-
rm -r tests/run-make/issue-7349 # same
8887
rm -r tests/run-make/sepcomp-inlining # same
8988
rm -r tests/run-make/sepcomp-separate # same
9089
rm -r tests/run-make/sepcomp-cci-copies # same

0 commit comments

Comments
 (0)