Skip to content

Commit

Permalink
Merge pull request #341 from hkratz/remove_llvm_asm
Browse files Browse the repository at this point in the history
Remove reference to unused llvm_asm feature (no longer available on Rust nightly)
  • Loading branch information
workingjubilee committed Jan 30, 2022
2 parents b475526 + 27e2c89 commit 6d3c23e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@
stmt_expr_attributes,
crate_visibility_modifier,
custom_inner_attributes,
llvm_asm
)]
#![allow(non_camel_case_types, non_snake_case,
// FIXME: these types are unsound in C FFI already
Expand Down
2 changes: 1 addition & 1 deletion verify/verify/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// See https://github.com/rust-lang/rust/issues/53346
#![allow(improper_ctypes_definitions)]
#![deny(rust_2018_idioms)]
#![cfg_attr(test, feature(avx512_target_feature, abi_vectorcall, llvm_asm))]
#![cfg_attr(test, feature(avx512_target_feature, abi_vectorcall))]

#[cfg(test)]
mod api;

0 comments on commit 6d3c23e

Please sign in to comment.