# HG changeset patch
# User Manuele Conti <conti.ma@alice.it>
# Date 1329075829 -3600
# Node ID a745f7d38a5d478ae848d6ee162dfc0ba7e7004d
# Parent  cf7d6862033d38b434fda7d33dfc26551bde335e
Fix typo error in some il visit in fill_candidate_datatypes_c class.

diff -r cf7d6862033d -r a745f7d38a5d stage3/fill_candidate_datatypes.cc
--- a/stage3/fill_candidate_datatypes.cc	Mon Feb 13 13:45:57 2012 +0000
+++ b/stage3/fill_candidate_datatypes.cc	Sun Feb 12 20:43:49 2012 +0100
@@ -934,7 +934,7 @@
 		for(unsigned int j = 0; j < il_operand->candidate_datatypes.size(); j++) {
 			prev_instruction_type = prev_il_instruction->candidate_datatypes[i];
 			operand_type = il_operand->candidate_datatypes[j];
-			if (is_type_equal(prev_instruction_type,operand_type))
+			if (is_type_equal(prev_instruction_type, operand_type))
 				symbol->candidate_datatypes.push_back(prev_instruction_type);
 		}
 	}
@@ -951,7 +951,7 @@
 		for(unsigned int j = 0; j < il_operand->candidate_datatypes.size(); j++) {
 			prev_instruction_type = prev_il_instruction->candidate_datatypes[i];
 			operand_type = il_operand->candidate_datatypes[j];
-			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BIT_compatible(il_operand->candidate_datatypes[i]))
+			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BIT_compatible(operand_type))
 				symbol->candidate_datatypes.push_back(prev_instruction_type);
 		}
 	}
@@ -973,7 +973,7 @@
 		for(unsigned int j = 0; j < il_operand->candidate_datatypes.size(); j++) {
 			prev_instruction_type = prev_il_instruction->candidate_datatypes[i];
 			operand_type = il_operand->candidate_datatypes[j];
-			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(il_operand->candidate_datatypes[i]))
+			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(operand_type))
 				symbol->candidate_datatypes.push_back(prev_instruction_type);
 		}
 	}
@@ -990,7 +990,7 @@
 		for(unsigned int j = 0; j < il_operand->candidate_datatypes.size(); j++) {
 			prev_instruction_type = prev_il_instruction->candidate_datatypes[i];
 			operand_type = il_operand->candidate_datatypes[j];
-			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(il_operand->candidate_datatypes[i]))
+			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(operand_type))
 				symbol->candidate_datatypes.push_back(prev_instruction_type);
 		}
 	}
@@ -1007,7 +1007,7 @@
 		for(unsigned int j = 0; j < il_operand->candidate_datatypes.size(); j++) {
 			prev_instruction_type = prev_il_instruction->candidate_datatypes[i];
 			operand_type = il_operand->candidate_datatypes[j];
-			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(il_operand->candidate_datatypes[i]))
+			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(operand_type))
 				symbol->candidate_datatypes.push_back(prev_instruction_type);
 		}
 	}
@@ -1024,7 +1024,7 @@
 		for(unsigned int j = 0; j < il_operand->candidate_datatypes.size(); j++) {
 			prev_instruction_type = prev_il_instruction->candidate_datatypes[i];
 			operand_type = il_operand->candidate_datatypes[j];
-			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(il_operand->candidate_datatypes[i]))
+			if (is_type_equal(prev_instruction_type,operand_type) && is_ANY_BOOL_compatible(operand_type))
 				symbol->candidate_datatypes.push_back(prev_instruction_type);
 		}
 	}