diff options
Diffstat (limited to 'src/cmd/trace/annotations.go')
| -rw-r--r-- | src/cmd/trace/annotations.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/trace/annotations.go b/src/cmd/trace/annotations.go index 9ffce1b187..0addc240be 100644 --- a/src/cmd/trace/annotations.go +++ b/src/cmd/trace/annotations.go @@ -494,7 +494,7 @@ func (region *regionDesc) duration() time.Duration { func (task *taskDesc) overlappingGCDuration(evs []*trace.Event) (overlapping time.Duration) { for _, ev := range evs { // make sure we only consider the global GC events. - if typ := ev.Type; typ != trace.EvGCStart && typ != trace.EvGCSTWStart { + if typ := ev.Type; typ != trace.EvGCStart { continue } |
