Skip to content

Commit 6d3c23e

Browse files
Merge pull request #341 from hkratz/remove_llvm_asm
Remove reference to unused llvm_asm feature (no longer available on Rust nightly)
2 parents b475526 + 27e2c89 commit 6d3c23e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,6 @@
224224
stmt_expr_attributes,
225225
crate_visibility_modifier,
226226
custom_inner_attributes,
227-
llvm_asm
228227
)]
229228
#![allow(non_camel_case_types, non_snake_case,
230229
// FIXME: these types are unsound in C FFI already

verify/verify/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// See https://github.com/rust-lang/rust/issues/53346
33
#![allow(improper_ctypes_definitions)]
44
#![deny(rust_2018_idioms)]
5-
#![cfg_attr(test, feature(avx512_target_feature, abi_vectorcall, llvm_asm))]
5+
#![cfg_attr(test, feature(avx512_target_feature, abi_vectorcall))]
66

77
#[cfg(test)]
88
mod api;

0 commit comments

Comments
 (0)