Skip to content

Commit

Permalink
benchmark ignoring span hashes during incr. comp. for getting a lower…
Browse files Browse the repository at this point in the history
… bound for #47389
  • Loading branch information
michaelwoerister committed Nov 28, 2018
1 parent 10e2c72 commit aa8957e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/ich/hcx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ impl<'a> HashStable<StableHashingContext<'a>> for Span {
const TAG_EXPANSION: u8 = 0;
const TAG_NO_EXPANSION: u8 = 1;

if !hcx.hash_spans {
if !hcx.hash_spans || true {
return
}

Expand Down

0 comments on commit aa8957e

Please sign in to comment.