Skip to content

Commit 32a2a12

Browse files
committed
Auto merge of #49880 - oli-obk:backport_allocation_hashing, r=petrochenkov
[beta] [incremental] Hash `Allocation`s backport of #49752 cc @matklad @sinkuu
2 parents e1727e3 + a6102fb commit 32a2a12

File tree

4 files changed

+65
-1
lines changed

4 files changed

+65
-1
lines changed

src/librustc/ich/impls_ty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ impl<'a> HashStable<StableHashingContext<'a>> for mir::interpret::AllocId {
399399
let tcx = tcx.expect("can't hash AllocIds during hir lowering");
400400
if let Some(alloc) = tcx.interpret_interner.get_alloc(*self) {
401401
AllocDiscriminant::Alloc.hash_stable(hcx, hasher);
402-
if !hcx.alloc_id_recursion_tracker.insert(*self) {
402+
if hcx.alloc_id_recursion_tracker.insert(*self) {
403403
tcx
404404
.interpret_interner
405405
.get_corresponding_static_def_id(*self)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
pub const A: &str = "hello";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
pub const A: &str = "xxxxx";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// revisions:cfail1 cfail2 cfail3
12+
// compile-flags: -Z query-dep-graph --test
13+
// must-compile-successfully
14+
15+
#![feature(rustc_attrs)]
16+
#![crate_type = "rlib"]
17+
18+
#![rustc_partition_translated(module="issue_49595-tests", cfg="cfail2")]
19+
#![rustc_partition_translated(module="issue_49595-lit_test", cfg="cfail3")]
20+
21+
mod tests {
22+
#[cfg_attr(not(cfail1), ignore)]
23+
#[test]
24+
fn test() {
25+
}
26+
}
27+
28+
29+
// Checks that changing a string literal without changing its span
30+
// takes effect.
31+
32+
// replacing a module to have a stable span
33+
#[cfg_attr(not(cfail3), path = "auxiliary/lit_a.rs")]
34+
#[cfg_attr(cfail3, path = "auxiliary/lit_b.rs")]
35+
mod lit;
36+
37+
pub mod lit_test {
38+
#[test]
39+
fn lit_test() {
40+
println!("{}", ::lit::A);
41+
}
42+
}

0 commit comments

Comments
 (0)