diff options
author | ronny | 2001-12-03 13:16:10 +0000 |
---|---|---|
committer | ronny | 2001-12-03 13:16:10 +0000 |
commit | 33d1851315946e784a52cd3f5d5f7f676b5d669f (patch) | |
tree | f1b7439bf6d3cdd7fbc64fea243a5ee917c4f73b /backend | |
parent | work 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')
-rw-r--r-- | backend/backendconvert.icl | 2 |
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] |