@@ -95,7 +95,6 @@ pub trait TyVisitor {
9595
9696 fn visit_f32 ( & mut self ) -> bool ;
9797 fn visit_f64 ( & mut self ) -> bool ;
98- #[ cfg( not( stage0) ) ]
9998 fn visit_f128 ( & mut self ) -> bool ;
10099
101100 fn visit_char ( & mut self ) -> bool ;
@@ -341,21 +340,18 @@ extern "rust-intrinsic" {
341340 /// `min_align_of::<T>()`
342341 ///
343342 /// The volatile parameter parameter is set to `true`, so it will not be optimized out.
344- #[ cfg( not( stage0) ) ]
345343 pub fn volatile_copy_nonoverlapping_memory < T > ( dst : * mut T , src : * T , count : uint ) ;
346344 /// Equivalent to the appropriate `llvm.memmove.p0i8.0i8.*` intrinsic, with
347345 /// a size of `count` * `size_of::<T>()` and an alignment of
348346 /// `min_align_of::<T>()`
349347 ///
350348 /// The volatile parameter parameter is set to `true`, so it will not be optimized out.
351- #[ cfg( not( stage0) ) ]
352349 pub fn volatile_copy_memory < T > ( dst : * mut T , src : * T , count : uint ) ;
353350 /// Equivalent to the appropriate `llvm.memset.p0i8.*` intrinsic, with a
354351 /// size of `count` * `size_of::<T>()` and an alignment of
355352 /// `min_align_of::<T>()`.
356353 ///
357354 /// The volatile parameter parameter is set to `true`, so it will not be optimized out.
358- #[ cfg( not( stage0) ) ]
359355 pub fn volatile_set_memory < T > ( dst : * mut T , val : u8 , count : uint ) ;
360356
361357 /// Perform a volatile load from the `src` pointer.
0 commit comments