* src/SDCCast.c (decorateType): fix promotion of unary minus
[fw/sdcc] / support / regression / tests / uminus.c
index 1a5732b925f63a1ffa7e3865b54d7407d44afcc1..0009840d8d4716df830321060e3851e4379ea254 100644 (file)
@@ -1,7 +1,7 @@
 /* Test unary minus
 
-    lefttype: int, char, short, long
-    resulttype: int, char, short, long
+    lefttype: char, short, long
+    resulttype: char, short, long
     storage: static,
     attr: volatile,
  */
@@ -20,7 +20,6 @@ testUMinus(void)
 
   left = -76;
   result = -left;
-  
+
   ASSERT(result == 76);
 }
-