summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-08-20 12:44:03 -0500
committerAustin Seipp <austin@well-typed.com>2014-08-20 12:51:30 -0500
commitc607500d1b5f7696eaf8fec6fa889aa1fde21822 (patch)
treecb3a5e5dfaa223e89ca7dc38ac3a368ec2e0cde8 /includes
parente7dd07345fbfe7623823ebd0442dbdab7f4b81c2 (diff)
downloadhaskell-c607500d1b5f7696eaf8fec6fa889aa1fde21822.tar.gz
[ci skip] includes: detabify/dewhitespace rts/Ticky.h
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'includes')
-rw-r--r--includes/rts/Ticky.h15
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 */
-