1{-# LANGUAGE CPP #-}
2
3module GHC.Exts.Heap.ProfInfo.PeekProfInfo (module Reexport) where
4
5-- See [hsc and CPP workaround]
6
7#if defined(PROFILING)
8import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingEnabled as Reexport
9import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingDisabled ()
10#else
11import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingDisabled as Reexport
12import GHC.Exts.Heap.ProfInfo.PeekProfInfo_ProfilingEnabled ()
13#endif
14