src/mcs51/gen.c (genCpl): fixed bug http://sf.net/mailarchive/message.php?msg_id...
[fw/sdcc] / src / SDCCsymt.c
index 90dc263072d55b324fd8cef78fbc8fb80b51d986..35360f205052fbecca4a9b47538cd5220e1a60bc 100644 (file)
@@ -1509,8 +1509,7 @@ computeType (sym_link * type1, sym_link * type2)
 #endif
 
   /* if either of them unsigned but not val then make this unsigned */
-  if (((/*!IS_LITERAL(type1) &&*/ SPEC_USIGN (etype1)) ||
-       (/*!IS_LITERAL(type2) &&*/ SPEC_USIGN (etype2))) &&
+  if ((SPEC_USIGN (etype1) || SPEC_USIGN (etype2)) &&
       !IS_FLOAT (reType))
     SPEC_USIGN (reType) = 1;
   else