summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-07-28 14:14:17 -0700
committerBrian Anderson <banderson@mozilla.com>2012-07-28 16:06:25 -0700
commit2df03bfdca16c23aaa7c3e10a876924edcd18469 (patch)
tree11affbcbdb746f13931155778a4668447fac1c65 /src/libcore
parentdfbe6976c2b05af7ef7182c14232713467595a11 (diff)
downloadrust-2df03bfdca16c23aaa7c3e10a876924edcd18469.tar.gz
rust-2df03bfdca16c23aaa7c3e10a876924edcd18469.zip
core: Correct exports of intrinsic ops
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/core.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libcore/core.rs b/src/libcore/core.rs
index f0228a00983..f015db98328 100644
--- a/src/libcore/core.rs
+++ b/src/libcore/core.rs
@@ -49,14 +49,16 @@ export ptr;
 #[cfg(notest)]
 import ops::{const, copy, send, owned};
 #[cfg(notest)]
-import ops::{add, sub, mul, div, modulo, neg, bitand, bitor, bitxor, shl};
+import ops::{add, sub, mul, div, modulo, neg, bitand, bitor, bitxor};
 #[cfg(notest)]
-import ops::{shr, index};
+import ops::{shl, shr, index};
 
 #[cfg(notest)]
 export const, copy, send, owned;
 #[cfg(notest)]
-export add, sub, mul, div, modulo, neg, bitops, index;
+export add, sub, mul, div, modulo, neg, bitand, bitor, bitxor;
+#[cfg(notest)]
+export shl, shr, index;
 
 // Export the log levels as global constants. Higher levels mean
 // more-verbosity. Error is the bottom level, default logging level is