(optionally) push static array initialization down to the ports code generator
[fw/sdcc] / src / mcs51 / main.c
index f7af7756f45fef0e067e5ab1f5ef5fc9249d6eba..c06d08a9c6d0b0f6b44360da588127be7f522fe1 100644 (file)
@@ -188,7 +188,7 @@ PORT mcs51_port =
   },
     /* mcs51 has an 8 bit mul */
   {
-    1, 0
+    1, -1
   },
   "_",
   _mcs51_init,
@@ -211,5 +211,6 @@ PORT mcs51_port =
   1,                           /* transform >= to ! < */
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
+  FALSE,                        /* No array initializer support. */
   PORT_MAGIC
 };