Skip to content
Snippets Groups Projects
Commit b1e8bb0d authored by Matthew Pickering's avatar Matthew Pickering
Browse files

Add two missing cases to decodeClosureFallback

parent 3512a215
No related branches found
No related tags found
No related merge requests found
Pipeline #59848 failed
...@@ -27,6 +27,8 @@ convertClosure itb g = ...@@ -27,6 +27,8 @@ convertClosure itb g =
GHC.SmallMutArrClosure _ a2 a3 -> SmallMutArrClosure itb a2 a3 GHC.SmallMutArrClosure _ a2 a3 -> SmallMutArrClosure itb a2 a3
GHC.MVarClosure _ a2 a3 a4 -> MVarClosure itb a2 a3 a4 GHC.MVarClosure _ a2 a3 a4 -> MVarClosure itb a2 a3 a4
GHC.OtherClosure _ a2 a3 -> OtherClosure itb a2 a3 GHC.OtherClosure _ a2 a3 -> OtherClosure itb a2 a3
GHC.IndClosure _ a2 -> IndClosure itb a2
GHC.MutVarClosure _ a2 -> MutVarClosure itb a2
GHC.WeakClosure _ a2 a3 a4 a5 a6 -> GHC.WeakClosure _ a2 a3 a4 a5 a6 ->
#if MIN_VERSION_GLASGOW_HASKELL(9,4,2,0) #if MIN_VERSION_GLASGOW_HASKELL(9,4,2,0)
let w_link = a6 let w_link = a6
......
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