From 9c2209354ec9c513af06549c0e9341f10f7cee83 Mon Sep 17 00:00:00 2001 From: simonpj Date: Mon, 23 Jul 2001 10:48:56 +0000 Subject: [PATCH] [project @ 2001-07-23 10:48:56 by simonpj] block/unblockAsynchExns have arity 2 --- ghc/compiler/prelude/primops.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/compiler/prelude/primops.txt b/ghc/compiler/prelude/primops.txt index 58ee3e1..a68f6dc 100644 --- a/ghc/compiler/prelude/primops.txt +++ b/ghc/compiler/prelude/primops.txt @@ -1,5 +1,5 @@ ----------------------------------------------------------------------- --- $Id: primops.txt,v 1.21 2001/07/13 11:39:48 rrt Exp $ +-- $Id: primops.txt,v 1.22 2001/07/23 10:48:56 simonpj Exp $ -- -- Primitive Operations -- @@ -1017,14 +1017,14 @@ primop BlockAsyncExceptionsOp "blockAsyncExceptions#" GenPrimOp (State# RealWorld -> (# State# RealWorld, a #)) -> (State# RealWorld -> (# State# RealWorld, a #)) with - strictness = { \ arity -> StrictnessInfo [wwLazy] False } + strictness = { \ arity -> StrictnessInfo [wwLazy,wwPrim] False } out_of_line = True primop UnblockAsyncExceptionsOp "unblockAsyncExceptions#" GenPrimOp (State# RealWorld -> (# State# RealWorld, a #)) -> (State# RealWorld -> (# State# RealWorld, a #)) with - strictness = { \ arity -> StrictnessInfo [wwLazy] False } + strictness = { \ arity -> StrictnessInfo [wwLazy,wwPrim] False } out_of_line = True ------------------------------------------------------------------------ -- 1.7.10.4