From 987d174d28d25481f273f18ef97e49ce8bb41a21 Mon Sep 17 00:00:00 2001 From: Mark Rousskov Date: Fri, 17 Dec 2021 09:32:48 -0500 Subject: [PATCH] Force enable query verification on all benchmarks --- collector/src/rustc-fake.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/collector/src/rustc-fake.rs b/collector/src/rustc-fake.rs index fc41125c5..96277ce93 100644 --- a/collector/src/rustc-fake.rs +++ b/collector/src/rustc-fake.rs @@ -30,6 +30,7 @@ fn main() { args.push(OsString::from("-Adeprecated")); args.push(OsString::from("-Aunknown-lints")); + args.push(OsString::from("-Zincremental-verify-ich")); if let Some(pos) = args.iter().position(|arg| arg == "--wrap-rustc-with") { // Strip out the flag and its argument, and run rustc under the wrapper