diff options
| author | bors <bors@rust-lang.org> | 2022-09-24 09:36:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-09-24 09:36:29 +0000 |
| commit | bb5a01617589b5e3ece5a36435fc285bfd13c9a4 (patch) | |
| tree | 7f58d400afb27079579bb5514eb71eff84f15967 /compiler/rustc_errors/src/lib.rs | |
| parent | 199fe1d169b5aeeca0e527ded26542b7a05ebd79 (diff) | |
| parent | fc43df0333d5862a219f16d294ae38b14b9191d3 (diff) | |
| download | rust-bb5a01617589b5e3ece5a36435fc285bfd13c9a4.tar.gz rust-bb5a01617589b5e3ece5a36435fc285bfd13c9a4.zip | |
Auto merge of #102064 - cjgillot:revert, r=Mark-Simulacrum
Revert perf-regression 101620 Reverts #101862 #101620 r? `@Mark-Simulacrum`
Diffstat (limited to 'compiler/rustc_errors/src/lib.rs')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 68971cebc35..b44cf352233 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -1205,7 +1205,7 @@ impl HandlerInner { if let Some(expectation_id) = diagnostic.level.get_expectation_id() { self.suppressed_expected_diag = true; - self.fulfilled_expectations.insert(expectation_id.normalize()); + self.fulfilled_expectations.insert(expectation_id); } if matches!(diagnostic.level, Warning(_)) |
