Skip to content

Commit

Permalink
Test NEON compiles
Browse files Browse the repository at this point in the history
Required by rust-lang#95002
  • Loading branch information
workingjubilee committed Mar 22, 2022
1 parent 990c297 commit 7d6415c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/test/ui/target-feature/aarch64-neon-works.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// only-aarch64
// run-pass
use std::arch::aarch64::*;

// Smoke test to verify aarch64 code that enables NEON compiles.
fn main() {
let zero = if is_aarch64_feature_detected!("neon") {
unsafe {
let zeros = zero_vector();
vget_lane_u8::<1>(1)
}
} else {
0
};
if cfg!(target feature = "neon") {
assert_eq!(zero, 0)
};
}


#[target_feature(enable = "neon")]
unsafe fn zero_vector() -> uint8x16_t {
vmovq_n_u8(0)
}

0 comments on commit 7d6415c

Please sign in to comment.