[commit: ghc] master: [ci skip] includes: detabify/dewhitespace rts/storage/Closures.h (f6cdf04)

git at git.haskell.org git at git.haskell.org
Wed Aug 20 17:52:30 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/f6cdf04c892c5c0e88a9b0eab72f09df67ed08d1/ghc

>---------------------------------------------------------------

commit f6cdf04c892c5c0e88a9b0eab72f09df67ed08d1
Author: Austin Seipp <austin at well-typed.com>
Date:   Wed Aug 20 12:47:21 2014 -0500

    [ci skip] includes: detabify/dewhitespace rts/storage/Closures.h
    
    Signed-off-by: Austin Seipp <austin at well-typed.com>


>---------------------------------------------------------------

f6cdf04c892c5c0e88a9b0eab72f09df67ed08d1
 includes/rts/storage/Closures.h | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/includes/rts/storage/Closures.h b/includes/rts/storage/Closures.h
index 8aed04e..d872868 100644
--- a/includes/rts/storage/Closures.h
+++ b/includes/rts/storage/Closures.h
@@ -94,17 +94,17 @@ typedef struct {
 
 typedef struct {
     StgHeader   header;
-    StgHalfWord arity;		/* zero if it is an AP */
+    StgHalfWord arity;          /* zero if it is an AP */
     StgHalfWord n_args;
-    StgClosure *fun;		/* really points to a fun */
+    StgClosure *fun;            /* really points to a fun */
     StgClosure *payload[FLEXIBLE_ARRAY];
 } StgPAP;
 
 typedef struct {
     StgThunkHeader   header;
-    StgHalfWord arity;		/* zero if it is an AP */
+    StgHalfWord arity;          /* zero if it is an AP */
     StgHalfWord n_args;
-    StgClosure *fun;		/* really points to a fun */
+    StgClosure *fun;            /* really points to a fun */
     StgClosure *payload[FLEXIBLE_ARRAY];
 } StgAP;
 
@@ -202,11 +202,11 @@ typedef struct _StgStableName {
   StgWord        sn;
 } StgStableName;
 
-typedef struct _StgWeak {	/* Weak v */
+typedef struct _StgWeak {       /* Weak v */
   StgHeader header;
   StgClosure *cfinalizers;
   StgClosure *key;
-  StgClosure *value;		/* v */
+  StgClosure *value;            /* v */
   StgClosure *finalizer;
   struct _StgWeak *link;
 } StgWeak;
@@ -243,9 +243,9 @@ typedef struct _StgCFinalizerList {
 
 typedef struct {
     StgHeader      header;
-    StgArrWords   *instrs;	/* a pointer to an ArrWords */
-    StgArrWords   *literals;	/* a pointer to an ArrWords */
-    StgMutArrPtrs *ptrs;	/* a pointer to a  MutArrPtrs */
+    StgArrWords   *instrs;      /* a pointer to an ArrWords */
+    StgArrWords   *literals;    /* a pointer to an ArrWords */
+    StgMutArrPtrs *ptrs;        /* a pointer to a  MutArrPtrs */
     StgHalfWord   arity;        /* arity of this BCO */
     StgHalfWord   size;         /* size of this BCO (in words) */
     StgWord       bitmap[FLEXIBLE_ARRAY];  /* an StgLargeBitmap */
@@ -255,7 +255,7 @@ typedef struct {
 #define BCO_BITMAP_SIZE(bco) (BCO_BITMAP(bco)->size)
 #define BCO_BITMAP_BITS(bco) (BCO_BITMAP(bco)->bitmap)
 #define BCO_BITMAP_SIZEW(bco) ((BCO_BITMAP_SIZE(bco) + BITS_IN(StgWord) - 1) \
-			        / BITS_IN(StgWord))
+                                / BITS_IN(StgWord))
 
 /* A function return stack frame: used when saving the state for a
  * garbage collection at a function entry point.  The function



More information about the ghc-commits mailing list