diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-04-01 09:35:19 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-04-01 09:35:19 +0000 |
commit | 70a2431f90fa932733ce015714ef7848640ed48f (patch) | |
tree | 7388d1e9736c4257e248b2a225d6e465948f03be /rts/ClosureFlags.c | |
parent | f4692220c7cbdadaa633f50eb2b30b59edb30183 (diff) | |
download | haskell-70a2431f90fa932733ce015714ef7848640ed48f.tar.gz |
Remove the IND_OLDGEN and IND_OLDGEN_PERM closure types
These are no longer used: once upon a time they used to have different
layout from IND and IND_PERM respectively, but that is no longer the
case since we changed the remembered set to be an array of addresses
instead of a linked list of closures.
Diffstat (limited to 'rts/ClosureFlags.c')
-rw-r--r-- | rts/ClosureFlags.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rts/ClosureFlags.c b/rts/ClosureFlags.c index cebd124dd2..d5181cae22 100644 --- a/rts/ClosureFlags.c +++ b/rts/ClosureFlags.c @@ -50,9 +50,7 @@ StgWord16 closure_flags[] = { [PAP] = (_HNF| _NS ), [AP_STACK] = ( _THU ), [IND] = ( _NS| _IND ), - [IND_OLDGEN] = ( _NS| _IND ), [IND_PERM] = ( _NS| _IND ), - [IND_OLDGEN_PERM] = ( _NS| _IND ), [IND_STATIC] = ( _NS|_STA| _IND ), [RET_BCO] = ( _BTM ), [RET_SMALL] = ( _BTM| _SRT ), @@ -84,6 +82,6 @@ StgWord16 closure_flags[] = { [WHITEHOLE] = ( 0 ) }; -#if N_CLOSURE_TYPES != 61 +#if N_CLOSURE_TYPES != 59 #error Closure types changed: update ClosureFlags.c! #endif |