You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The NamedRegionTimer obtains a timer instance from NamedRegionTimers global,
which keeps a single timer per timer name and timer group name. Those names are
generally constants and a single timer might end up being used from multiple
threads:
Assertion `!Running && "Cannot start a running timer"' failed.
This affects rustc -Z time-llvm-passes when compiling with multiple codegen units.
Extended Description
The NamedRegionTimer obtains a timer instance from NamedRegionTimers global,
which keeps a single timer per timer name and timer group name. Those names are
generally constants and a single timer might end up being used from multiple
threads:
Assertion `!Running && "Cannot start a running timer"' failed.
This affects rustc -Z time-llvm-passes when compiling with multiple codegen units.
Downstream bug reports:
-Z time-llvm-passes
asserts compiling simplest program. rust-lang/rust#48329The text was updated successfully, but these errors were encountered: