diff options
-rw-r--r-- | includes/rts/Ticky.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/includes/rts/Ticky.h b/includes/rts/Ticky.h index 31d80953fc..ff4d44a0d0 100644 --- a/includes/rts/Ticky.h +++ b/includes/rts/Ticky.h @@ -21,16 +21,15 @@ typedef struct _StgEntCounter { /* Using StgWord for everything, because both the C and asm code generators make trouble if you try to pack things tighter */ - StgWord registeredp; /* 0 == no, 1 == yes */ - StgInt arity; /* arity (static info) */ - StgInt allocd; /* # allocation of this closure */ - /* (rest of args are in registers) */ - char *str; /* name of the thing */ - char *arg_kinds; /* info about the args types */ - StgInt entry_count; /* Trips to fast entry code */ + StgWord registeredp; /* 0 == no, 1 == yes */ + StgInt arity; /* arity (static info) */ + StgInt allocd; /* # allocation of this closure */ + /* (rest of args are in registers) */ + char *str; /* name of the thing */ + char *arg_kinds; /* info about the args types */ + StgInt entry_count; /* Trips to fast entry code */ StgInt allocs; /* number of allocations by this fun */ struct _StgEntCounter *link;/* link to chain them all together */ } StgEntCounter; #endif /* RTS_TICKY_H */ - |