about summary refs log tree commit diff stats
path: root/021check_instruction.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-27 22:04:59 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-27 22:04:59 -0800
commita2ee95cb89d4cf8b6a3b03721ceaadd8bf31a964 (patch)
treeef04d7ae28c4165d48f3605a4bbab88a55bdc36b /021check_instruction.cc
parent016599f1d2f861a5c36e6f88c05c98ef88e0ee85 (diff)
downloadmu-a2ee95cb89d4cf8b6a3b03721ceaadd8bf31a964.tar.gz
2485
Diffstat (limited to '021check_instruction.cc')
-rw-r--r--021check_instruction.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/021check_instruction.cc b/021check_instruction.cc
index e2fc08d6..cb3117ec 100644
--- a/021check_instruction.cc
+++ b/021check_instruction.cc
@@ -119,8 +119,6 @@ bool types_match(type_tree* lhs, type_tree* rhs) {
     if (lhs->value == get(Type_ordinal, "address")) return false;
     return size_of(rhs) == size_of(lhs);
   }
-//?   if (lhs->value == get(Type_ordinal, "character") && rhs->value == get(Type_ordinal, "number")) return true;
-//?   if (lhs->value == get(Type_ordinal, "number") && rhs->value == get(Type_ordinal, "character")) return true;
   if (lhs->value != rhs->value) return false;
   return types_match(lhs->left, rhs->left) && types_match(lhs->right, rhs->right);
 }