summaryrefslogtreecommitdiff
path: root/libraries/ghc-heap/GHC/Exts/Heap/ProfInfo/PeekProfInfo.hs
blob: 48dce2b8cb36c208cdd3895ff4b191cad0722e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{-# LANGUAGE CPP #-}

module GHC.Exts.Heap.ProfInfo.PeekProfInfo (module Reexport) where

-- See [hsc and CPP workaround]

#if defined(PROFILING)
import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingEnabled as Reexport
import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingDisabled ()
#else
import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingDisabled as Reexport
import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingEnabled ()
#endif