Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler/GHC/Runtime/Heap/Layout.hs
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,8 @@ cardTableSizeW platform elems =
-----------------------------------------------------------------------------
-- deriving the RTS closure type from an SMRep

#include "ClosureTypes.h"
#include "FunTypes.h"
#include "rts/storage/ClosureTypes.h"
#include "rts/storage/FunTypes.h"
-- Defines CONSTR, CONSTR_1_0 etc

-- | Derives the RTS closure type from an 'SMRep'
Expand Down
2 changes: 1 addition & 1 deletion compiler/GHC/StgToCmm/Layout.hs
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ mkVirtConstrSizes profile field_reps
-------------------------------------------------------------------------

-- bring in ARG_P, ARG_N, etc.
#include "FunTypes.h"
#include "rts/storage/FunTypes.h"

mkArgDescr :: Platform -> [Id] -> ArgDescr
mkArgDescr platform args
Expand Down
2 changes: 1 addition & 1 deletion compiler/GHC/StgToCmm/TagCheck.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module GHC.StgToCmm.TagCheck
( emitTagAssertion, emitArgTagCheck, checkArg, whenCheckTags,
checkArgStatic, checkFunctionArgTags,checkConArgsStatic,checkConArgsDyn) where

#include "ClosureTypes.h"
#include "rts/storage/ClosureTypes.h"

import GHC.Prelude

Expand Down
2 changes: 2 additions & 0 deletions rts-fs/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This "fs" library, used by various ghc utilities is used to share some common
I/O filesystem functions with different packages.
Loading