From: simonmar Date: Mon, 25 Sep 2000 11:34:27 +0000 (+0000) Subject: [project @ 2000-09-25 11:34:27 by simonmar] X-Git-Tag: Approximately_9120_patches~3737 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=4dbf803f00cbd4ae383fd5e14ab741aeaaafd7a9;p=ghc-hetmet.git [project @ 2000-09-25 11:34:27 by simonmar] arguments of StgLam should be bndrs, not Id. --- diff --git a/ghc/compiler/stgSyn/StgSyn.lhs b/ghc/compiler/stgSyn/StgSyn.lhs index 2f0fc0b..5a40c9d 100644 --- a/ghc/compiler/stgSyn/StgSyn.lhs +++ b/ghc/compiler/stgSyn/StgSyn.lhs @@ -175,7 +175,7 @@ it encodes (\x -> e) as (let f = \x -> e in f) \begin{code} | StgLam Type -- Type of whole lambda (useful when making a binder for it) - [Id] + [bndr] StgExpr -- Body of lambda \end{code}