From 5b4688fd245333edb887a786161d46beae231078 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 4 Sep 2000 14:07:29 +0000 Subject: [PATCH] [project @ 2000-09-04 14:07:29 by simonmar] Use mkAbsCStmts rather than AbsCStmts directly. --- ghc/compiler/codeGen/CgMonad.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/codeGen/CgMonad.lhs b/ghc/compiler/codeGen/CgMonad.lhs index 8f68ad4..fc7e6ab 100644 --- a/ghc/compiler/codeGen/CgMonad.lhs +++ b/ghc/compiler/codeGen/CgMonad.lhs @@ -1,7 +1,7 @@ % % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998 % -% $Id: CgMonad.lhs,v 1.24 2000/07/11 16:03:37 simonmar Exp $ +% $Id: CgMonad.lhs,v 1.25 2000/09/04 14:07:29 simonmar Exp $ % \section[CgMonad]{The code generation monad} @@ -475,7 +475,7 @@ forkEvalHelp body_eob_info env_code body_code stateIncUsageEval :: CgState -> CgState -> CgState stateIncUsageEval (MkCgState absC1 bs ((v,f,r,h1),heap_usage)) (MkCgState absC2 _ ((_,_,_,h2), _)) - = MkCgState (absC1 `AbsCStmts` absC2) + = MkCgState (absC1 `mkAbsCStmts` absC2) -- The AbsC coming back should consist only of nested declarations, -- notably of the return vector! bs -- 1.7.10.4