Skip to content

Commit

Permalink
Implement additional ARM NEON intriniscs (rust-lang#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
Licenser committed Apr 7, 2020
1 parent 1a577bd commit ca7f756
Show file tree
Hide file tree
Showing 19 changed files with 11,997 additions and 1,691 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Cargo.lock
.*.swp
target
tags
tags
crates/stdarch-gen/aarch64.rs
crates/stdarch-gen/arm.rs
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"crates/stdarch-verify",
"crates/core_arch",
"crates/std_detect",
"crates/stdarch-gen",
"examples/"
]
exclude = [
Expand Down
3 changes: 3 additions & 0 deletions crates/core_arch/src/aarch64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ use stdarch_test::assert_instr;
pub unsafe fn brk() -> ! {
crate::intrinsics::abort()
}

#[cfg(test)]
pub(crate) mod test_support;
Loading

0 comments on commit ca7f756

Please sign in to comment.