-
Notifications
You must be signed in to change notification settings - Fork 289
[DRAFT] intrinsics for all architectures appear in rustdoc #1104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
21b4259
8c6fdc5
f91d45f
dbc0820
d589823
553e32d
75792de
7463267
00a0bbd
0610bef
4a101b8
3263581
4ae11b3
a63b0d4
02de848
2a698b1
2c48570
e22224d
306c600
df00775
3b3caba
f14ce23
6be7f85
f866c0a
ed04262
b17be0f
ff89355
e201bf4
0f186e3
e8956b7
bd42df8
f141aa6
f2c4eac
8794cae
213aaa9
bb176aa
230f0be
dc373ed
52eaa8e
58ced63
90ccef5
e1b4810
749ee37
de7ce7f
7abb5d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,9 @@ mod simd32; | |
))] | ||
pub use self::simd32::*; | ||
|
||
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to enable |
||
pub mod crc; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a |
||
|
||
mod sealed { | ||
pub trait Dmb { | ||
unsafe fn __dmb(&self); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,9 +25,7 @@ mod neon; | |
pub use self::neon::*; | ||
|
||
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))] | ||
mod crc; | ||
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))] | ||
pub use self::crc::*; | ||
pub use crate::core_arch::acle::crc::*; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This shouldn't be needed, there is already a blanket re-export of |
||
|
||
#[cfg(any(target_arch = "aarch64", target_feature = "v7"))] | ||
Byron marked this conversation as resolved.
Show resolved
Hide resolved
|
||
mod crypto; | ||
|
Uh oh!
There was an error while loading. Please reload this page.