forked from M-Labs/libfringe
move architecture specifics into arch directory
This commit is contained in:
parent
f24e8e7911
commit
997a4a7765
|
@ -0,0 +1,7 @@
|
|||
// Copyright (c) 2015, edef <edef@edef.eu>
|
||||
// See the LICENSE file included in this distribution.
|
||||
pub use self::imp::Registers;
|
||||
|
||||
#[cfg(target_arch = "x86_64")]
|
||||
#[path = "x86_64/mod.rs"]
|
||||
mod imp;
|
|
@ -23,7 +23,6 @@ pub mod stack;
|
|||
|
||||
mod debug;
|
||||
|
||||
#[cfg(target_arch = "x86_64")]
|
||||
mod arch;
|
||||
|
||||
#[cfg(feature = "os")]
|
||||
|
|
Loading…
Reference in New Issue