File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,6 @@ struct PassTiming : public PassInstrumentation {
35
35
// / parent thread into which the new thread should be nested.
36
36
DenseMap<PipelineParentInfo, unsigned > parentTimerIndices;
37
37
38
- // / A stack of the currently active timing scopes per thread.
39
- DenseMap<uint64_t , SmallVector<TimingScope, 4 >> activeThreadTimers;
40
-
41
38
// / The timing manager owned by this instrumentation (in case timing was
42
39
// / enabled by the user on the pass manager without providing an external
43
40
// / timing manager). This *must* appear before the `ownedTimingScope` to
@@ -46,6 +43,9 @@ struct PassTiming : public PassInstrumentation {
46
43
std::unique_ptr<TimingManager> ownedTimingManager;
47
44
TimingScope ownedTimingScope;
48
45
46
+ // / A stack of the currently active timing scopes per thread.
47
+ DenseMap<uint64_t , SmallVector<TimingScope, 4 >> activeThreadTimers;
48
+
49
49
// / The root timing scope into which timing is reported.
50
50
TimingScope &rootScope;
51
51
You can’t perform that action at this time.
0 commit comments