diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-10 10:09:03 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-10 19:20:48 -0500 |
commit | 19413d09a3939c97a8a3b8890f97c3cf48af31d1 (patch) | |
tree | 1577672a0f62d177fa243070210fe8eecd16257c /rts | |
parent | 59ba8fb3fb2bd7ac99b559141bf87a39c72e8a00 (diff) | |
download | haskell-19413d09a3939c97a8a3b8890f97c3cf48af31d1.tar.gz |
eventlog: Delete misleading comment in gen_event_types.py
Not all events start with CapNo and there's not logic I could see which
adds this to the length.
Diffstat (limited to 'rts')
-rwxr-xr-x | rts/gen_event_types.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rts/gen_event_types.py b/rts/gen_event_types.py index 0044327c0b..b447fbdfae 100755 --- a/rts/gen_event_types.py +++ b/rts/gen_event_types.py @@ -35,8 +35,6 @@ class EventType: def __str__(self): return '(n={n}, name={name})'.format(n=self.n, name=self.name) -# N.B. all events include an implicit initial CapNo field. -# # When adding a new event type used by GHC you should also update # NUM_GHC_EVENT_TAGS in rts/include/rts/EventLogFormat.h. event_types = [ |