mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-14 11:39:48 +08:00
Makefile.in (toplev.o): Depend on regs.h.
* Makefile.in (toplev.o): Depend on regs.h. * output.h (tdesc_section): Prototype. * regclass.c (copy_cost): Mark parameters with ATTRIBUTE_UNUSED. * sdbout.c: Include "tm_p.h". * toplev.c: Include "regs.h". From-SVN: r31337
This commit is contained in:
parent
203588e7ff
commit
d0af450df2
@ -1,3 +1,15 @@
|
||||
2000-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* Makefile.in (toplev.o): Depend on regs.h.
|
||||
|
||||
* output.h (tdesc_section): Prototype.
|
||||
|
||||
* regclass.c (copy_cost): Mark parameters with ATTRIBUTE_UNUSED.
|
||||
|
||||
* sdbout.c: Include "tm_p.h".
|
||||
|
||||
* toplev.c: Include "regs.h".
|
||||
|
||||
Tue Jan 11 11:37:58 2000 Mike Stump <mrs@wrs.com>
|
||||
|
||||
* unroll.c (unroll_loop): Add EH support.
|
||||
|
@ -1474,7 +1474,7 @@ toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) function.h \
|
||||
flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \
|
||||
insn-codes.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h dwarfout.h \
|
||||
dwarf2out.h sdbout.h dbxout.h $(EXPR_H) $(BASIC_BLOCK_H) graph.h loop.h \
|
||||
except.h $(lang_options_files)
|
||||
except.h regs.h $(lang_options_files)
|
||||
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \
|
||||
-DTARGET_NAME=\"$(target_alias)\" \
|
||||
-c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* Declarations for insn-output.c. These functions are defined in recog.c,
|
||||
final.c, and varasm.c.
|
||||
Copyright (C) 1987, 1991, 1994, 97-98, 1999 Free Software Foundation, Inc.
|
||||
Copyright (C) 1987, 1991, 1994, 97-99, 2000 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU CC.
|
||||
|
||||
@ -184,6 +184,10 @@ extern void init_section PARAMS ((void));
|
||||
extern void fini_section PARAMS ((void));
|
||||
#endif
|
||||
|
||||
#ifdef TDESC_SECTION_ASM_OP
|
||||
extern void tdesc_section PARAMS ((void));
|
||||
#endif
|
||||
|
||||
#ifdef TREE_CODE
|
||||
/* Tell assembler to change to section NAME for DECL.
|
||||
If DECL is NULL, just switch to section NAME.
|
||||
|
@ -1724,9 +1724,9 @@ record_reg_classes (n_alts, n_ops, ops, modes, subreg_changes_size,
|
||||
static int
|
||||
copy_cost (x, mode, class, to_p)
|
||||
rtx x;
|
||||
enum machine_mode mode;
|
||||
enum machine_mode mode ATTRIBUTE_UNUSED;
|
||||
enum reg_class class;
|
||||
int to_p;
|
||||
int to_p ATTRIBUTE_UNUSED;
|
||||
{
|
||||
#ifdef HAVE_SECONDARY_RELOADS
|
||||
enum reg_class secondary_class = NO_REGS;
|
||||
|
@ -54,6 +54,7 @@ AT&T C compiler. From the example below I would conclude the following:
|
||||
#include "reload.h"
|
||||
#include "output.h"
|
||||
#include "toplev.h"
|
||||
#include "tm_p.h"
|
||||
|
||||
/* Mips systems use the SDB functions to dump out symbols, but do not
|
||||
supply usable syms.h include files. Which syms.h file to use is a
|
||||
|
@ -58,6 +58,7 @@ Boston, MA 02111-1307, USA. */
|
||||
#include "ggc.h"
|
||||
#include "graph.h"
|
||||
#include "loop.h"
|
||||
#include "regs.h"
|
||||
|
||||
#ifdef DWARF_DEBUGGING_INFO
|
||||
#include "dwarfout.h"
|
||||
|
Loading…
Reference in New Issue
Block a user