Skip to content

Register new snapshots #13930

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/libstd/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ pub trait TyVisitor {

fn visit_f32(&mut self) -> bool;
fn visit_f64(&mut self) -> bool;
#[cfg(not(stage0))]
fn visit_f128(&mut self) -> bool;

fn visit_char(&mut self) -> bool;
Expand Down Expand Up @@ -341,21 +340,18 @@ extern "rust-intrinsic" {
/// `min_align_of::<T>()`
///
/// The volatile parameter parameter is set to `true`, so it will not be optimized out.
#[cfg(not(stage0))]
pub fn volatile_copy_nonoverlapping_memory<T>(dst: *mut T, src: *T, count: uint);
/// Equivalent to the appropriate `llvm.memmove.p0i8.0i8.*` intrinsic, with
/// a size of `count` * `size_of::<T>()` and an alignment of
/// `min_align_of::<T>()`
///
/// The volatile parameter parameter is set to `true`, so it will not be optimized out.
#[cfg(not(stage0))]
pub fn volatile_copy_memory<T>(dst: *mut T, src: *T, count: uint);
/// Equivalent to the appropriate `llvm.memset.p0i8.*` intrinsic, with a
/// size of `count` * `size_of::<T>()` and an alignment of
/// `min_align_of::<T>()`.
///
/// The volatile parameter parameter is set to `true`, so it will not be optimized out.
#[cfg(not(stage0))]
pub fn volatile_set_memory<T>(dst: *mut T, val: u8, count: uint);

/// Perform a volatile load from the `src` pointer.
Expand Down
1 change: 0 additions & 1 deletion src/libstd/reflect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ impl<V:TyVisitor + MovePtr> TyVisitor for MovePtrAdaptor<V> {
true
}

#[cfg(not(stage0))]
fn visit_f128(&mut self) -> bool {
self.align_to::<f128>();
if ! self.inner.visit_f128() { return false; }
Expand Down
1 change: 0 additions & 1 deletion src/libstd/repr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@ impl<'a> TyVisitor for ReprVisitor<'a> {

fn visit_f32(&mut self) -> bool { self.write::<f32>() }
fn visit_f64(&mut self) -> bool { self.write::<f64>() }
#[cfg(not(stage0))]
fn visit_f128(&mut self) -> bool { fail!("not implemented") }

fn visit_char(&mut self) -> bool {
Expand Down
8 changes: 8 additions & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
S 2014-05-04 922c420
freebsd-x86_64 635f28dd48340db0c1cdc01adad18866acfc7020
linux-i386 360a40acf713e6f2d7fcde0112ae87d8336f320c
linux-x86_64 a6dfa69483824d525180ac6040b59beed7df165b
macos-i386 75e466423e2183e57a5f02358c6f9210997eae94
macos-x86_64 12575c620e163002f6d30d1843564eeae31de7b9
winnt-i386 be45073b14691e2b0aa9181d4238cbc310f5ae58

S 2014-04-23 b5dd3f0
freebsd-x86_64 b6ccb045b9bea4cc4781bc128e047a1c68dc2c17
linux-i386 9e4e8d2bc70ff5b8db21169f762cb20c4dba6c2c
Expand Down
2 changes: 0 additions & 2 deletions src/test/compile-fail/deriving-bounds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//NOTE: Remove in the next snapshot
#[cfg(not(stage0))]
#[deriving(Share(Bad),Send,Copy)]
//~^ ERROR unexpected value in deriving, expected a trait
struct Test;
Expand Down
2 changes: 0 additions & 2 deletions src/test/run-pass/deriving-bounds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//NOTE: Remove in the next snapshot
#[cfg(not(stage0))]
#[deriving(Share,Send,Copy)]
struct Test;

Expand Down