aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorronny2001-05-11 10:01:14 +0000
committerronny2001-05-11 10:01:14 +0000
commitf5770cc572d739635be0dbd20f24edaca9a4e5f4 (patch)
treef65eb04f728fb225e5a5fdfba830b24b3466a934
parentI wanted to commit this together with the icl file, but it didn't fit (diff)
fixed bug in convertCases Let (introduced in previous commit)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@427 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r--frontend/convertcases.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/convertcases.icl b/frontend/convertcases.icl
index b7b17c4..7972af1 100644
--- a/frontend/convertcases.icl
+++ b/frontend/convertcases.icl
@@ -66,7 +66,7 @@ where
cs = { cs & cs_expr_heap = cs_expr_heap }
= case let_info of
EI_LetType let_type
- # bound_vars = addLetVars (let_strict_binds ++ let_lazy_binds) let_type bound_vars
+ # ci = {ci & ci_bound_vars=addLetVars (let_strict_binds ++ let_lazy_binds) let_type ci.ci_bound_vars}
# (let_strict_binds, cs) = convertCases ci let_strict_binds cs
# (let_lazy_binds, cs) = convertCases ci let_lazy_binds cs
# (let_expr, cs) = convertCases ci let_expr cs