1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
#![doc(include = "core_arch_docs.md")] #![allow(dead_code)] #![allow(unused_features)] #![feature( const_fn, const_fn_union, custom_inner_attributes, link_llvm_intrinsics, platform_intrinsics, repr_simd, simd_ffi, asm, proc_macro_hygiene, stmt_expr_attributes, core_intrinsics, no_core, rustc_attrs, stdsimd, staged_api, doc_cfg, mmx_target_feature, tbm_target_feature, sse4a_target_feature, arm_target_feature, aarch64_target_feature, cmpxchg16b_target_feature, avx512_target_feature, mips_target_feature, powerpc_target_feature, wasm_target_feature, abi_unadjusted, adx_target_feature, rtm_target_feature, f16c_target_feature, external_doc )] #![cfg_attr(test, feature(test, abi_vectorcall, untagged_unions))] #![deny(clippy::missing_inline_in_public_items)] #![allow( clippy::inline_always, clippy::too_many_arguments, clippy::cast_sign_loss, clippy::cast_lossless, clippy::cast_possible_wrap, clippy::cast_possible_truncation, clippy::cast_precision_loss, clippy::shadow_reuse, clippy::cognitive_complexity, clippy::similar_names, clippy::many_single_char_names )] #![cfg_attr(test, allow(unused_imports))] #![no_std] #![unstable(feature = "stdsimd", issue = "27731")] #![doc( test(attr(deny(warnings))), test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))) )] #[cfg(test)] #[macro_use] extern crate std; #[cfg(test)] #[macro_use] extern crate std_detect; #[cfg(test)] extern crate stdarch_test; #[cfg(all(test, target_arch = "wasm32"))] extern crate wasm_bindgen_test; #[path = "mod.rs"] mod core_arch; pub use self::core_arch::arch::*; #[allow(unused_imports)] use core::{ffi, hint, intrinsics, marker, mem, ops, ptr, sync};