Skip to content
Snippets Groups Projects
Commit aefcf957 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-12-23 12:26:00 by simonm]

Add strictness for fork# and par#.
parent 00bab5ea
No related merge requests found
......@@ -856,6 +856,9 @@ primOpStrictness :: PrimOp -> ([Demand], Bool)
-- Use only the ones you ned.
primOpStrictness SeqOp = ([wwLazy], False)
primOpStrictness ParOp = ([wwLazy], False)
primOpStrictness ForkOp = ([wwLazy, wwPrim], False)
primOpStrictness NewArrayOp = ([wwPrim, wwLazy, wwPrim], False)
primOpStrictness WriteArrayOp = ([wwPrim, wwPrim, wwLazy, wwPrim], False)
......
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