aboutsummaryrefslogtreecommitdiff
path: root/backend/backendconvert.icl
diff options
context:
space:
mode:
authorronny2001-12-03 13:16:10 +0000
committerronny2001-12-03 13:16:10 +0000
commit33d1851315946e784a52cd3f5d5f7f676b5d669f (patch)
treef1b7439bf6d3cdd7fbc64fea243a5ee917c4f73b /backend/backendconvert.icl
parentwork around for 2.0 compiler bug (diff)
bug fix: uniqueness error in nested record/array updates
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@916 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backend/backendconvert.icl')
-rw-r--r--backend/backendconvert.icl2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/backendconvert.icl b/backend/backendconvert.icl
index 98d92b5..b4df0c7 100644
--- a/backend/backendconvert.icl
+++ b/backend/backendconvert.icl
@@ -1796,6 +1796,8 @@ where
where
addKinds NormalSelector selections
= [(BESelector, selection) \\ selection <- selections]
+ addKinds NormalSelectorUniqueElementResult selections
+ = [(BESelector, selection) \\ selection <- selections]
addKinds _ [selection]
= [(BESelector_U, selection)]
addKinds _ [selection : selections]