Skip to content

Commit

Permalink
Register new snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Nov 21, 2014
1 parent 97c043b commit 1684419
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/compiletest/runtest.rs
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
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
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
@@ -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
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

0 comments on commit 1684419

Please sign in to comment.