aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2001-10-20 11:24:36 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2001-10-20 07:24:36 -0400
commit107c13a132d91e9e229994cc6cd23d1615f1e6df (patch)
treeb5fcca3bcfe2b0a20b677bdf0d8573d81fe331d1 /gcc
parentdf4e780e4b3d4123c46474ec4874b06f7b4a4451 (diff)
downloadgcc-107c13a132d91e9e229994cc6cd23d1615f1e6df.zip
gcc-107c13a132d91e9e229994cc6cd23d1615f1e6df.tar.gz
gcc-107c13a132d91e9e229994cc6cd23d1615f1e6df.tar.bz2
toplev.h (struct lang_hooks): HONOR_READONLY now bool.
* toplev.h (struct lang_hooks): HONOR_READONLY now bool. * main.c: Include config.h and system.h, but not ansidecl.h. * Makefile.in (main.o): Update accordingly. From-SVN: r46376
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/Makefile.in2
-rw-r--r--gcc/main.c3
-rw-r--r--gcc/toplev.h2
4 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index afaba71..8c1094ac 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+Sat Oct 20 07:27:14 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
+
+ * toplev.h (struct lang_hooks): HONOR_READONLY now bool.
+ * main.c: Include config.h and system.h, but not ansidecl.h.
+ * Makefile.in (main.o): Update accordingly.
+
Sat Oct 20 12:05:31 CEST 2001 Jan Hubicka <jh@suse.cz>
* i386.h (SSE_REGPARM_MAX): Set to 8 for x86_64.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 00577e1..875452b 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1373,7 +1373,7 @@ toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) function.h \
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
-DTARGET_NAME=\"$(target_alias)\" \
-c $(srcdir)/toplev.c
-main.o : main.c toplev.h
+main.o : main.c $(CONFIG_H) $(SYSTEM_H) toplev.h
rtl-error.o: rtl-error.c system.h $(RTL_H) $(INSN_ATTR_H) insn-config.h \
input.h toplev.h intl.h diagnostic.h $(CONFIG_H)
diff --git a/gcc/main.c b/gcc/main.c
index 1513712d..49418bd 100644
--- a/gcc/main.c
+++ b/gcc/main.c
@@ -17,7 +17,8 @@ along with GCC; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
-#include "ansidecl.h"
+#include "config.h"
+#include "system.h"
#include "toplev.h"
int main PARAMS ((int argc, char **argv));
diff --git a/gcc/toplev.h b/gcc/toplev.h
index c9b60ee..61a277c 100644
--- a/gcc/toplev.h
+++ b/gcc/toplev.h
@@ -167,7 +167,7 @@ struct lang_hooks
void (*post_options) PARAMS ((void));
/* Nonzero if TYPE_READONLY and TREE_READONLY should always be honored. */
- int honor_readonly;
+ bool honor_readonly;
struct lang_hooks_for_tree_inlining tree_inlining;