Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 99ba695

Browse files
committedAug 30, 2024
Auto merge of #129773 - workingjubilee:rollup-qdoxwhe, r=workingjubilee
Rollup of 8 pull requests Successful merges: - #126183 (Separate core search logic with search ui) - #129366 (linker: Synchronize native library search in rustc and linker) - #129403 (Ban non-array SIMD) - #129527 (Don't use `TyKind` in a lint) - #129534 (Deny `wasm_c_abi` lint to nudge the last 25%) - #129640 (Re-enable android tests/benches in alloc/core) - #129731 (Allow running `./x.py test compiler`) - #129754 (wasi: Fix sleeping for `Duration::MAX`) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 0d63418 + 4f38687 commit 99ba695

File tree

142 files changed

+4474
-4685
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+4474
-4685
lines changed
 

‎compiler/rustc_codegen_cranelift/example/float-minmax-pass.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99

1010
#[repr(simd)]
1111
#[derive(Copy, Clone, PartialEq, Debug)]
12-
struct f32x4(pub f32, pub f32, pub f32, pub f32);
12+
struct f32x4(pub [f32; 4]);
1313

1414
use std::intrinsics::simd::*;
1515

1616
fn main() {
17-
let x = f32x4(1.0, 2.0, 3.0, 4.0);
18-
let y = f32x4(2.0, 1.0, 4.0, 3.0);
17+
let x = f32x4([1.0, 2.0, 3.0, 4.0]);
18+
let y = f32x4([2.0, 1.0, 4.0, 3.0]);
1919

2020
#[cfg(not(any(target_arch = "mips", target_arch = "mips64")))]
2121
let nan = f32::NAN;
@@ -24,13 +24,13 @@ fn main() {
2424
#[cfg(any(target_arch = "mips", target_arch = "mips64"))]
2525
let nan = f32::from_bits(f32::NAN.to_bits() - 1);
2626

27-
let n = f32x4(nan, nan, nan, nan);
27+
let n = f32x4([nan, nan, nan, nan]);
2828

2929
unsafe {
3030
let min0 = simd_fmin(x, y);
3131
let min1 = simd_fmin(y, x);
3232
assert_eq!(min0, min1);
33-
let e = f32x4(1.0, 1.0, 3.0, 3.0);
33+
let e = f32x4([1.0, 1.0, 3.0, 3.0]);
3434
assert_eq!(min0, e);
3535
let minn = simd_fmin(x, n);
3636
assert_eq!(minn, x);
@@ -40,7 +40,7 @@ fn main() {
4040
let max0 = simd_fmax(x, y);
4141
let max1 = simd_fmax(y, x);
4242
assert_eq!(max0, max1);
43-
let e = f32x4(2.0, 2.0, 4.0, 4.0);
43+
let e = f32x4([2.0, 2.0, 4.0, 4.0]);
4444
assert_eq!(max0, e);
4545
let maxn = simd_fmax(x, n);
4646
assert_eq!(maxn, x);

‎compiler/rustc_codegen_cranelift/example/std_example.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ fn main() {
166166
enum Never {}
167167
}
168168

169-
foo(I64X2(0, 0));
169+
foo(I64X2([0, 0]));
170170

171171
transmute_fat_pointer();
172172

@@ -204,7 +204,7 @@ fn rust_call_abi() {
204204
}
205205

206206
#[repr(simd)]
207-
struct I64X2(i64, i64);
207+
struct I64X2([i64; 2]);
208208

209209
#[allow(improper_ctypes_definitions)]
210210
extern "C" fn foo(_a: I64X2) {}

0 commit comments

Comments
 (0)
Please sign in to comment.