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
This commit is contained in:
Richard Kenner 2001-10-20 11:24:36 +00:00 committed by Richard Kenner
parent df4e780e4b
commit 107c13a132
4 changed files with 10 additions and 3 deletions

View File

@ -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.

View File

@ -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)

View File

@ -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));

View File

@ -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;