-
-
Notifications
You must be signed in to change notification settings - Fork 330
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sangluo
committed
Jul 10, 2022
1 parent
447095b
commit 246c542
Showing
4 changed files
with
191 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
// Take a look at the license at the top of the repository in the LICENSE file. | ||
|
||
#[cfg(target_arch = "x86")] | ||
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] | ||
pub(crate) mod x86; | ||
|
||
#[cfg(target_arch = "x86")] | ||
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] | ||
pub use self::x86::*; | ||
|
||
#[cfg(target_arch = "aarch64")] | ||
pub(crate) mod arm; | ||
|
||
#[cfg(target_arch = "aarch64")] | ||
pub use self::arm::*; | ||
pub use self::arm::*; |
Oops, something went wrong.