Skip to content

Commit 8662234

Browse files
committed
Stop passing -Zincremental-verify-ich
1 parent 3347209 commit 8662234

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

collector/src/bin/rustc-fake.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,6 @@ fn main() {
7575
args.push(OsString::from("-Adeprecated"));
7676
args.push(OsString::from("-Aunknown-lints"));
7777

78-
// This forces incremental query hash verification on. Currently, rustc
79-
// hashes 1/32 of queries loaded from disk without this flag, but that 1/32
80-
// is based on the (expected) hash of the data, which can vary from build to
81-
// build, adding a source of noise to our measurements, which we prefer to
82-
// avoid. rustc-perf can accept the higher cost of always verifying hashes,
83-
// and we currently prefer to avoid exposing a means of hard-disabling
84-
// verification.
85-
args.push(OsString::from("-Zincremental-verify-ich"));
86-
8778
if let Some(pos) = args.iter().position(|arg| arg == "--wrap-rustc-with") {
8879
// Strip out the flag and its argument, and run rustc under the wrapper
8980
// program named by the argument.

0 commit comments

Comments
 (0)