We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0163768 commit 10d55c3Copy full SHA for 10d55c3
tests/ui/abi/compatibility.rs
@@ -10,7 +10,6 @@ use std::ptr::NonNull;
10
// Hence there are `cfg` throughout this test to disable parts of it on those targets.
11
// sparc64: https://github.com/rust-lang/rust/issues/115336
12
// mips64: https://github.com/rust-lang/rust/issues/115404
13
-// loongarch64: https://github.com/rust-lang/rust/issues/115509
14
15
macro_rules! assert_abi_compatible {
16
($name:ident, $t1:ty, $t2:ty) => {
@@ -109,7 +108,6 @@ macro_rules! test_transparent {
109
108
test_abi_compatible!(wrap1, $t, Wrapper1<$t>);
110
test_abi_compatible!(wrap2, $t, Wrapper2<$t>);
111
test_abi_compatible!(wrap3, $t, Wrapper3<$t>);
112
- #[cfg(not(target_arch = "loongarch64"))]
113
test_abi_compatible!(wrap4, $t, WrapperUnion<$t>);
114
}
115
};
0 commit comments