Skip to content
Snippets Groups Projects
Commit 2b1af08b authored by Cheng Shao's avatar Cheng Shao Committed by Marge Bot
Browse files

ghc-heap: fix typo in ghc-heap cbits

parent c2b33fc9
No related branches found
No related tags found
No related merge requests found
......@@ -127,11 +127,11 @@ getWordzh(P_ stack, W_ offsetWords) {
getUnderflowFrameNextChunkzh(P_ stack, W_ offsetWords) {
P_ closurePtr;
closurePtr = (StgStack_sp(stack) + WDS(offsetWords));
ASSERT(LOOKS_LIKE_CLOURE_PTR(closurePtr));
ASSERT(LOOKS_LIKE_CLOSURE_PTR(closurePtr));
P_ next_chunk;
(next_chunk) = ccall getUnderflowFrameNextChunk(closurePtr);
ASSERT(LOOKS_LIKE_CLOURE_PTR(next_chunk));
ASSERT(LOOKS_LIKE_CLOSURE_PTR(next_chunk));
return (next_chunk);
}
......
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