summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/sort_inference.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/sort_inference.cpp b/src/util/sort_inference.cpp
index 76e39c2b3..9aef059bd 100644
--- a/src/util/sort_inference.cpp
+++ b/src/util/sort_inference.cpp
@@ -290,7 +290,6 @@ void SortInference::setEqual( int t1, int t2 ){
rt1 = rt2;
rt2 = swap;
}
- d_type_union_find.d_eqc[rt1] = rt2;
std::map< int, TypeNode >::iterator it1 = d_type_types.find( rt1 );
if( it1!=d_type_types.end() ){
if( d_type_types.find( rt2 )==d_type_types.end() ){
@@ -298,8 +297,10 @@ void SortInference::setEqual( int t1, int t2 ){
d_type_types.erase( rt1 );
}else{
//may happen for mixed int/real
+ return;
}
}
+ d_type_union_find.d_eqc[rt1] = rt2;
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback