diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2011-07-27 12:35:40 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2011-07-27 12:35:40 +0100 |
commit | adc3fb884bc53d229faf9f599fb3f890cadeccb1 (patch) | |
tree | 0cd57f714820003b3d2113e5b909a6dd268c6242 /compiler/cmm | |
parent | d7f62c1a893cfcec9ab97f68e19faab52ff04be4 (diff) | |
download | haskell-adc3fb884bc53d229faf9f599fb3f890cadeccb1.tar.gz |
White space only
Diffstat (limited to 'compiler/cmm')
-rw-r--r-- | compiler/cmm/CmmDecl.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/cmm/CmmDecl.hs b/compiler/cmm/CmmDecl.hs index 9bd2386776..28279f2dca 100644 --- a/compiler/cmm/CmmDecl.hs +++ b/compiler/cmm/CmmDecl.hs @@ -77,9 +77,11 @@ data CmmInfoTable ClosureTypeInfo | CmmNonInfoTable -- Procedure doesn't need an info table --- | If the table is local, we don't export its identifier even if the corresponding Id is exported. --- It's always safe to say 'False' here, but it might save symbols to say 'True' +-- | If the table is local, we don't export its identifier even if the +-- corresponding Id is exported. It's always safe to say 'False' +-- here, but it might save symbols to say 'True' type LocalInfoTable = Bool + type HasStaticClosure = Bool -- TODO: The GC target shouldn't really be part of CmmInfo |