X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2FcodeGen%2FSMRep.lhs;h=4bc122222eb51b80e90c30ae1dede86914063bbf;hb=fd8d04119e849f9c713d3e697228846d93c5ca69;hp=f323c1be1dd83e75a4ed84b2cb20ef5b7a47fcb4;hpb=f96e9aa0444de0e673b3c4055c6e43299639bc5b;p=ghc-hetmet.git diff --git a/compiler/codeGen/SMRep.lhs b/compiler/codeGen/SMRep.lhs index f323c1b..4bc1222 100644 --- a/compiler/codeGen/SMRep.lhs +++ b/compiler/codeGen/SMRep.lhs @@ -9,6 +9,13 @@ This is here, rather than in ClosureInfo, just to keep nhc happy. Other modules should access this info through ClosureInfo. \begin{code} +{-# OPTIONS -w #-} +-- The above warning supression flag is a temporary kludge. +-- While working on this module you are encouraged to remove it and fix +-- any warnings in the module. See +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings +-- for details + module SMRep ( -- Words and bytes StgWord, StgHalfWord, @@ -112,8 +119,10 @@ entry to the garbage collector. \begin{code} data CgRep = VoidArg -- Void - | PtrArg -- Word-sized Ptr + | PtrArg -- Word-sized heap pointer, followed + -- by the garbage collector | NonPtrArg -- Word-sized non-pointer + -- (including addresses not followed by GC) | LongArg -- 64-bit non-pointer | FloatArg -- 32-bit float | DoubleArg -- 64-bit float