Register new snapshots.
This commit is contained in:
parent
f4f10dba29
commit
89b80faa8e
29 changed files with 182 additions and 486 deletions
|
|
@ -274,12 +274,12 @@ fn find_libdir(sysroot: &Path) -> String {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(any(all(stage0, target_word_size = "64"), all(not(stage0), target_pointer_width = "64")))]
|
||||
#[cfg(target_pointer_width = "64")]
|
||||
fn primary_libdir_name() -> String {
|
||||
"lib64".to_string()
|
||||
}
|
||||
|
||||
#[cfg(any(all(stage0, target_word_size = "32"), all(not(stage0), target_pointer_width = "32")))]
|
||||
#[cfg(target_pointer_width = "32")]
|
||||
fn primary_libdir_name() -> String {
|
||||
"lib32".to_string()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -947,13 +947,6 @@ impl<'tcx> PartialEq for TyS<'tcx> {
|
|||
}
|
||||
impl<'tcx> Eq for TyS<'tcx> {}
|
||||
|
||||
#[cfg(stage0)]
|
||||
impl<'tcx, S: Writer> Hash<S> for TyS<'tcx> {
|
||||
fn hash(&self, s: &mut S) {
|
||||
(self as *const _).hash(s)
|
||||
}
|
||||
}
|
||||
#[cfg(not(stage0))]
|
||||
impl<'tcx, S: Writer + Hasher> Hash<S> for TyS<'tcx> {
|
||||
fn hash(&self, s: &mut S) {
|
||||
(self as *const _).hash(s)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue