Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 280ea11

Browse files
committed
Replace 98016 example
Closes #1460
1 parent 607fbd6 commit 280ea11

File tree

2 files changed

+10
-20
lines changed

2 files changed

+10
-20
lines changed

ices/98016.rs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#![crate_type = "lib"]
2+
#![feature(repr_simd)]
3+
4+
#[repr(simd)]
5+
pub struct Simd([u8; 8]);
6+
7+
pub fn to_array_outer(x: Simd) -> [u8; 8] {
8+
let y = x;
9+
y.0
10+
}

ices/98016.sh

-20
This file was deleted.

0 commit comments

Comments
 (0)