Skip to content
Snippets Groups Projects
Commit d91cd59b authored by sof's avatar sof
Browse files

[project @ 1998-04-30 19:25:19 by sof]

new defn: fixedHS
parent 042cded1
No related merge requests found
......@@ -9,7 +9,7 @@
module MachMisc (
fixedHdrSizeInWords, varHdrSizeInWords,
charLikeSize, intLikeSize, mutHS, dataHS, foHS,
charLikeSize, intLikeSize, mutHS, dataHS, fixedHS, foHS,
sizeOf, primRepToSize,
eXTRA_STK_ARGS_HERE,
......@@ -188,10 +188,11 @@ blahLikeSize blah
blahLikeRep = SpecialisedRep blah 0 1 SMNormalForm
--------
mutHS, dataHS, foHS :: StixTree
mutHS, dataHS, fixedHS, foHS :: StixTree
mutHS = blah_hs (MuTupleRep 0)
dataHS = blah_hs (DataRep 0)
mutHS = blah_hs (MuTupleRep 0)
dataHS = blah_hs (DataRep 0)
fixedHS = StInt (toInteger fixedHdrSizeInWords)
{- Semi-hack: to avoid introducing ForeignObjRep,
we hard-code the VHS for ForeignObj here.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment