Skip to content

Register new snapshots #19198

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
Nov 23, 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
2 changes: 1 addition & 1 deletion src/compiletest/runtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[cfg(not(stage0))]

use self::TargetLocation::*;

use common::Config;
Expand Down
2 changes: 0 additions & 2 deletions src/driver/driver.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.

#![no_start]

#[cfg(rustdoc)]
extern crate "rustdoc" as this;

Expand Down
5 changes: 0 additions & 5 deletions src/librustc/middle/ty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2638,11 +2638,6 @@ impl ops::Sub<TypeContents,TypeContents> for TypeContents {
}

impl fmt::Show for TypeContents {
#[cfg(stage0)]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "TypeContents({:t})", self.bits)
}
#[cfg(not(stage0))]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "TypeContents({:b})", self.bits)
}
Expand Down
9 changes: 9 additions & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
S 2014-11-21 c9f6d69
freebsd-x86_64 0ef316e7c369177de043e69e964418bd637cbfc0
linux-i386 c8342e762a1720be939ed7c6a39bdaa27892f66f
linux-x86_64 7a7fe6f5ed47b9cc66261f880e166c7c8738b73e
macos-i386 63e8644512bd5665c14389a83d5af564c7c0b103
macos-x86_64 7933ae0e974d1b897806138b7052cb2b4514585f
winnt-i386 94f5e2974e6120945c909753010d73b53cd6ff90
winnt-x86_64 905ffbdd94580854b01dc4e27fdad7e7c8ae18fe

S 2014-11-18 9c96a79
freebsd-x86_64 22c93a289bdbc886af882b5bb76bfa673d46aa4f
linux-i386 999ba4a0dfb70adca628138a7d5f491023621140
Expand Down
1 change: 0 additions & 1 deletion src/test/compile-fail/stage0-cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ pub trait PartialEq for Sized? {
fn eq(&self, other: &Self) -> bool;
}

#[cfg(not(stage0))] // NOTE(stage0): remove cfg after a snapshot
#[unstable = "Trait is unstable."]
impl<'a, Sized? T: PartialEq> PartialEq for &'a T {
#[inline]
Expand Down