diff options
author | simonmar <unknown> | 2005-03-31 10:16:46 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-03-31 10:16:46 +0000 |
commit | 853e20a3eb86137cdb8accf69c6caa9db83a3d34 (patch) | |
tree | 803e7b469d073d88fa7644dccbaeedbd986bd462 /ghc/compiler/codeGen/Bitmap.hs | |
parent | ca739e852566d7e0bfd594e6d7bf08da04f78d3c (diff) | |
download | haskell-853e20a3eb86137cdb8accf69c6caa9db83a3d34.tar.gz |
[project @ 2005-03-31 10:16:33 by simonmar]
Tweaks to get the GHC sources through Haddock. Doesn't quite work
yet, because Haddock complains about the recursive modules. Haddock
needs to understand SOURCE imports (it can probably just ignore them
as a first attempt).
Diffstat (limited to 'ghc/compiler/codeGen/Bitmap.hs')
-rw-r--r-- | ghc/compiler/codeGen/Bitmap.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/compiler/codeGen/Bitmap.hs b/ghc/compiler/codeGen/Bitmap.hs index 36915e07d2..c0b490978c 100644 --- a/ghc/compiler/codeGen/Bitmap.hs +++ b/ghc/compiler/codeGen/Bitmap.hs @@ -66,9 +66,9 @@ intsToReverseBitmap size slots{- must be sorted -} | size >= wORD_SIZE_IN_BITS = complement 0 | otherwise = (1 `shiftL` size) - 1 -{-| +{- | Magic number, must agree with @BITMAP_BITS_SHIFT@ in InfoTables.h. -Some kinds of bitmap pack a size/bitmap into a single word if +Some kinds of bitmap pack a size\/bitmap into a single word if possible, or fall back to an external pointer when the bitmap is too large. This value represents the largest size of bitmap that can be packed into a single word. |