Skip to content

Commit ca7f756

Browse files
authored
Implement additional ARM NEON intriniscs (#792)
1 parent 1a577bd commit ca7f756

File tree

19 files changed

+11997
-1691
lines changed

19 files changed

+11997
-1691
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
Cargo.lock
22
.*.swp
33
target
4-
tags
4+
tags
5+
crates/stdarch-gen/aarch64.rs
6+
crates/stdarch-gen/arm.rs

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ members = [
33
"crates/stdarch-verify",
44
"crates/core_arch",
55
"crates/std_detect",
6+
"crates/stdarch-gen",
67
"examples/"
78
]
89
exclude = [

crates/core_arch/src/aarch64/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ use stdarch_test::assert_instr;
2929
pub unsafe fn brk() -> ! {
3030
crate::intrinsics::abort()
3131
}
32+
33+
#[cfg(test)]
34+
pub(crate) mod test_support;

0 commit comments

Comments
 (0)