]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/lib.rs
std: Move simd to core::simd and reexport. #1457
[rust.git] / src / libstd / lib.rs
index 8a7d3f394725500339eb43ec02c2cbeb749493e9..bb6f93cf087fb0b67efe7be2fd59125406fc62e1 100644 (file)
        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]
 #[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;