Internals: Fix dumping of fast-only statistics after emit

This commit is contained in:
Geza Lore 2026-06-21 18:56:40 +01:00
parent 78a2dc0738
commit fbea10b427
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ static bool verilate(const string& argString) {
V3Os::filesystemFlushBuildDir(v3Global.opt.makeDir());
if (v3Global.opt.hierTop()) V3Os::filesystemFlushBuildDir(v3Global.opt.hierTopDataDir());
if (v3Global.opt.stats()) V3Stats::statsStageAll(v3Global.rootp(), "WroteAll");
if (v3Global.opt.stats()) V3Stats::statsStageAll(v3Global.rootp(), "WroteFast");
if (v3Global.opt.stats()) V3Stats::statsStageAll(v3Global.rootp(), "WroteFast", true);
// Final writing shouldn't throw warnings, but...
V3Error::abortIfWarnings();