From: brian Date: Mon, 4 Jul 2005 01:36:38 +0000 (+0000) Subject: more type unification X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=commitdiff_plain;h=5f681f726cce9463d57cc5f9554fff2ef4c2c64c more type unification darcs-hash:20050704013638-24bed-5a85f357f167f85cd9eb9b367371c9ca166a8d34.gz --- diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index 3d77ba3..7463f04 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -57,6 +57,7 @@ public abstract class Type implements CGConst { public static Type unify(Type t1, Type t2) { if(t1 == Type.NULL) return t2; if(t2 == Type.NULL) return t1; + if((t1 == Type.INT && t2 == Type.BOOLEAN) || (t2 == Type.INT & t1 == Type.BOOLEAN)) return Type.BOOLEAN; if(t1 == t2) return t1; // FIXME: This needs to do a lot more (subclasses, etc) // it probably should be in Context.java