1
Fork 0

std: Move simd to core::simd and reexport. #1457

[breaking-change]
This commit is contained in:
Brian Anderson 2014-05-20 20:24:17 -07:00
parent 1240197a5b
commit 1a1e6c8e73
10 changed files with 17 additions and 15 deletions

View file

@ -103,7 +103,7 @@
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/")]
#![feature(macro_rules, globs, asm, managed_boxes, thread_local, link_args,
simd, linkage, default_type_params, phase, concat_idents, quad_precision_float)]
linkage, default_type_params, phase, concat_idents, quad_precision_float)]
// Don't link to std. We are std.
#![no_std]
@ -151,6 +151,7 @@ pub use core::mem;
#[cfg(not(test))] pub use core::ops;
pub use core::ptr;
pub use core::raw;
pub use core::simd;
pub use core::tuple;
#[cfg(not(test))] pub use core::ty;
pub use core::result;