diff options
author | johnvg | 2009-04-29 11:00:36 +0000 |
---|---|---|
committer | johnvg | 2009-04-29 11:00:36 +0000 |
commit | 418c4d534cdf9a9b2c385395e0f03f6d21160ff7 (patch) | |
tree | 6120d9c036a27bef664d441457ff0d63ce8a24a8 /frontend/comparedefimp.icl | |
parent | prevent compiler crash when check import completeness of a generic function (diff) |
bug fix: initialize atype_vars1 as intended
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1730 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/comparedefimp.icl')
-rw-r--r-- | frontend/comparedefimp.icl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/comparedefimp.icl b/frontend/comparedefimp.icl index b4729b2..a7a2ccf 100644 --- a/frontend/comparedefimp.icl +++ b/frontend/comparedefimp.icl @@ -912,9 +912,9 @@ instance t_corresponds SelectorDef where &&& equal dclDef.sd_field_nr iclDef.sd_field_nr init_atype_vars atype_vars1 atype_vars2 tc_state=:{tc_type_vars=tc_type_vars=:{hwn_heap}} - # type_heap = foldSt init_type_var atype_vars1 hwn_heap - # type_heap = foldSt init_type_var atype_vars2 hwn_heap - = {tc_state & tc_type_vars = {tc_type_vars & hwn_heap = type_heap}} + # hwn_heap = foldSt init_type_var atype_vars1 hwn_heap + # hwn_heap = foldSt init_type_var atype_vars2 hwn_heap + = {tc_state & tc_type_vars = {tc_type_vars & hwn_heap = hwn_heap}} where init_type_var {atv_variable} type_heap = writePtr atv_variable.tv_info_ptr TVI_Empty type_heap |