Added NULL entry for port->cseOk
authorsandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 10 Nov 2001 06:41:41 +0000 (06:41 +0000)
committersandeep <sandeep@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 10 Nov 2001 06:41:41 +0000 (06:41 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1553 4a8a32a2-be11-0410-ad9d-d568d2c75423

src/izt/i186.c
src/izt/tlcs900h.c
src/pic/main.c
src/z80/main.c

index 0b3a6b17dd637ab44cc801e3e317bb399759acf7..301807e2f22dab988b6cd0fca2990fb31b49632d 100644 (file)
@@ -209,5 +209,6 @@ PORT i186_port = {
     1,  /* transform != to !(a == b) */
     0,  /* leave == */
     FALSE,                        /* No array initializer support. */
+    0,                            /* no CSE cost estimation yet */
     PORT_MAGIC
 };
index 8cfc51616c61f7de5ff02e4dba1b92cb3cf08b87..2c9cfe0045167652dd67ef252f58fce64bac20cc 100644 (file)
@@ -208,5 +208,6 @@ PORT tlcs900h_port =
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
   FALSE,                        /* No array initializer support. */    
+  0,                            /* no CSE cost estimation yet */
   PORT_MAGIC
 };
index 28af756dbd010ce7feb68d0b44f43d89212cdb2e..596f5cb25e8effa3016ddac723ce97f68329aac0 100644 (file)
@@ -299,5 +299,6 @@ PORT pic_port =
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
   FALSE,                        /* No array initializer support. */
+  0,                            /* no CSE cost estimation yet */
   PORT_MAGIC
 };
index 7727275f4808b2e0876046fdd1b344cc2406db9f..99abb8db1a54803de3cb15b2c7f505750117bf2d 100644 (file)
@@ -512,6 +512,7 @@ PORT z80_port =
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
   TRUE,                         /* Array initializer support. */       
+  0,                            /* no CSE cost estimation yet */
   PORT_MAGIC
 };
 
@@ -594,5 +595,6 @@ PORT gbz80_port =
   1,                           /* transform != to !(a == b) */
   0,                           /* leave == */
   TRUE,                         /* Array initializer support. */
+  0,                            /* no CSE cost estimation yet */
   PORT_MAGIC
 };