Skip to content
Snippets Groups Projects
Commit 5c4dcc3e authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

ghc-heap: Fix profiled build

Previously a255b4e3 failed to update the
non-profiling codepath.
parent e81f2e4e
No related branches found
No related tags found
No related merge requests found
......@@ -165,8 +165,8 @@ import Foreign
import GHC.Exts.Heap.ProfInfo.Types
peekStgTSOProfInfo :: Ptr a -> IO (Maybe StgTSOProfInfo)
peekStgTSOProfInfo _ = return Nothing
peekStgTSOProfInfo :: (Ptr b -> IO (Maybe CostCentreStack)) -> Ptr a -> IO (Maybe StgTSOProfInfo)
peekStgTSOProfInfo _ _ = return Nothing
peekTopCCS :: Ptr a -> IO (Maybe CostCentreStack)
peekTopCCS _ = return Nothing
......
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