diff options
| author | Seo Sanghyeon <sanxiyn@gmail.com> | 2013-05-08 14:37:18 +0900 |
|---|---|---|
| committer | Seo Sanghyeon <sanxiyn@gmail.com> | 2013-05-08 14:37:18 +0900 |
| commit | eb5fa061136a1f4eb4d7c3c58f396edea43c234d (patch) | |
| tree | a784329db9c97237c6298ab233cd1ec980eaec5f | |
| parent | 0ed4495ac4c262a8361dded6900e4e69b1faaee1 (diff) | |
| download | rust-eb5fa061136a1f4eb4d7c3c58f396edea43c234d.tar.gz rust-eb5fa061136a1f4eb4d7c3c58f396edea43c234d.zip | |
Move core::simd to core::unstable::simd
| -rw-r--r-- | src/libcore/core.rc | 1 | ||||
| -rw-r--r-- | src/libcore/unstable.rs | 2 | ||||
| -rw-r--r-- | src/libcore/unstable/simd.rs (renamed from src/libcore/simd.rs) | 0 |
3 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc index 5c05c83e35a..127d6dbc774 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -164,7 +164,6 @@ pub mod nil; pub mod bool; pub mod char; pub mod tuple; -pub mod simd; pub mod vec; pub mod at_vec; diff --git a/src/libcore/unstable.rs b/src/libcore/unstable.rs index 4a69de26f6b..0b96e649178 100644 --- a/src/libcore/unstable.rs +++ b/src/libcore/unstable.rs @@ -30,6 +30,8 @@ pub mod weak_task; pub mod exchange_alloc; #[path = "unstable/intrinsics.rs"] pub mod intrinsics; +#[path = "unstable/simd.rs"] +pub mod simd; #[path = "unstable/extfmt.rs"] pub mod extfmt; #[path = "unstable/lang.rs"] diff --git a/src/libcore/simd.rs b/src/libcore/unstable/simd.rs index a05f6e8af5a..a05f6e8af5a 100644 --- a/src/libcore/simd.rs +++ b/src/libcore/unstable/simd.rs |
