Skip to content

Commit d9a5df6

Browse files
test for more SIMD monomorphization errors
build-fail test for simd type with an element type that's a wide pointer test for SIMD element type of optional nonnull ptr to extern type test that wide ptr simd element type of *mut [u8] fails
1 parent 3d738b0 commit d9a5df6

5 files changed

+55
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// run-pass
2+
// ignore-emscripten
3+
4+
#![feature(extern_types)]
5+
#![feature(repr_simd)]
6+
7+
use std::ptr::NonNull;
8+
9+
extern {
10+
type Extern;
11+
}
12+
13+
#[repr(simd)]
14+
struct S<T>(T);
15+
16+
#[inline(never)]
17+
fn identity<T>(v: T) -> T {
18+
v
19+
}
20+
21+
fn main() {
22+
let _v: S<[Option<NonNull<Extern>>; 4]> = identity(S([None; 4]));
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// build-fail
2+
3+
#![feature(repr_simd)]
4+
5+
// error-pattern:monomorphising SIMD type `S<[*mut [u8]; 4]>` with a non-primitive-scalar (integer/float/pointer) element type `*mut [u8]`
6+
7+
#[repr(simd)]
8+
struct S<T>(T);
9+
10+
fn main() {
11+
let _v: Option<S<[*mut [u8]; 4]>> = None;
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
error: monomorphising SIMD type `S<[*mut [u8]; 4]>` with a non-primitive-scalar (integer/float/pointer) element type `*mut [u8]`
2+
3+
error: aborting due to previous error
4+
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// build-fail
2+
3+
#![feature(repr_simd)]
4+
5+
// error-pattern:monomorphising SIMD type `S` with a non-primitive-scalar (integer/float/pointer) element type `*mut [u8]`
6+
7+
#[repr(simd)]
8+
struct S([*mut [u8]; 4]);
9+
10+
fn main() {
11+
let _v: Option<S> = None;
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
error: monomorphising SIMD type `S` with a non-primitive-scalar (integer/float/pointer) element type `*mut [u8]`
2+
3+
error: aborting due to previous error
4+

0 commit comments

Comments
 (0)