Skip to content

Commit beab37c

Browse files
committed
Auto merge of #49752 - sinkuu:fix_incrcmp_str_lit, r=oli-obk
[incremental] Hash `Allocation`s `HashSet::insert` returns `true` if the value did not exist, which is the timing we want to hash the `Allocation`. Fixes #49595 cc @oli-obk
2 parents 66fcc56 + 3832e8b commit beab37c

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
@@ -417,7 +417,7 @@ impl<'a> HashStable<StableHashingContext<'a>> for mir::interpret::AllocId {
417417
let tcx = tcx.expect("can't hash AllocIds during hir lowering");
418418
if let Some(alloc) = tcx.interpret_interner.get_alloc(*self) {
419419
AllocDiscriminant::Alloc.hash_stable(hcx, hasher);
420-
if !hcx.alloc_id_recursion_tracker.insert(*self) {
420+
if hcx.alloc_id_recursion_tracker.insert(*self) {
421421
tcx
422422
.interpret_interner
423423
.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)