* src/SDCCast.c (decorateType): fix promotion of unary minus
[fw/sdcc] / support / regression / tests / bug-477927.c
index b0ab6c3ef453ede5433ba4b5ea092c4b8c3ce603..6acc995baee796a2ddf5370473fd822dfe39006d 100644 (file)
@@ -29,6 +29,11 @@ spoil(UBYTE ignored)
 
 UBYTE accu[2];
 
+#if !defined(PORT_HOST)
+#  pragma save
+#  pragma disable_warning 84
+#endif
+
 void 
 testLoopInit(void)
 {
@@ -45,4 +50,6 @@ testLoopInit(void)
   while(t != 3);
 }
 
-
+#if !defined(PORT_HOST)
+#  pragma restore
+#endif