diff options
| author | ronny | 2001-07-17 09:27:49 +0000 | 
|---|---|---|
| committer | ronny | 2001-07-17 09:27:49 +0000 | 
| commit | be30433859d186a361e5e6981ac4276215e664da (patch) | |
| tree | 120183ddd54941d387f29c10ff727029dc83be32 | |
| parent | bug fix: reverse order of functions (in components) (diff) | |
assign correct selector kind to intermediate selections in nested updates
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@546 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
| -rw-r--r-- | backend/backendconvert.icl | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/backendconvert.icl b/backend/backendconvert.icl index 39d3bc1..48a7866 100644 --- a/backend/backendconvert.icl +++ b/backend/backendconvert.icl @@ -1669,7 +1669,7 @@ where  				=	[(BESelector_F, selection) : addMoreKinds selections]  				where  					addMoreKinds selections -						=	[(BESelector_U, selection) \\ selection <- selections] +						=	[(BESelector_N, selection) \\ selection <- selections]  			addKinds []  				=	[]  	convertExpr (TupleSelect {ds_arity} n expr)  | 
