From: sandeep Date: Sat, 10 Nov 2001 06:41:41 +0000 (+0000) Subject: Added NULL entry for port->cseOk X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b9bea5043c1c0af93766dade356b99edd0fec0ea;p=fw%2Fsdcc Added NULL entry for port->cseOk git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1553 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/izt/i186.c b/src/izt/i186.c index 0b3a6b17..301807e2 100644 --- a/src/izt/i186.c +++ b/src/izt/i186.c @@ -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 }; diff --git a/src/izt/tlcs900h.c b/src/izt/tlcs900h.c index 8cfc5161..2c9cfe00 100644 --- a/src/izt/tlcs900h.c +++ b/src/izt/tlcs900h.c @@ -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 }; diff --git a/src/pic/main.c b/src/pic/main.c index 28af756d..596f5cb2 100644 --- a/src/pic/main.c +++ b/src/pic/main.c @@ -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 }; diff --git a/src/z80/main.c b/src/z80/main.c index 7727275f..99abb8db 100644 --- a/src/z80/main.c +++ b/src/z80/main.c @@ -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 };