mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 08:03:41 +08:00
Makefile.in (ssa.o, regclass.o): Depend on $(EXPR_H).
* Makefile.in (ssa.o, regclass.o): Depend on $(EXPR_H). * regclass.c, ssa.c: Include expr.h. * rtl.h (memory_address, force_reg, emit_queue, emit_move_insn, gen_move_insn): Delete redundant declarations. From-SVN: r41337
This commit is contained in:
parent
78faa32d14
commit
0829d244e7
@ -1,3 +1,12 @@
|
||||
2001-04-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* Makefile.in (ssa.o, regclass.o): Depend on $(EXPR_H).
|
||||
|
||||
* regclass.c, ssa.c: Include expr.h.
|
||||
|
||||
* rtl.h (memory_address, force_reg, emit_queue, emit_move_insn,
|
||||
gen_move_insn): Delete redundant declarations.
|
||||
|
||||
2001-04-13 Alan Modra <amodra@one.net.au>
|
||||
|
||||
* pa.c (hppa_init_pic_save): Set rtx_unchanging for
|
||||
|
@ -1477,7 +1477,7 @@ resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h $(SYSTEM_H) \
|
||||
lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
|
||||
real.h insn-config.h $(INSN_ATTR_H) $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) \
|
||||
$(TM_P_H)
|
||||
ssa.o : ssa.c $(CONFIG_H) $(SYSTEM_H) $(REGS_H) varray.h \
|
||||
ssa.o : ssa.c $(CONFIG_H) $(SYSTEM_H) $(REGS_H) varray.h $(EXPR_H) \
|
||||
hard-reg-set.h flags.h function.h real.h insn-config.h $(RECOG_H) \
|
||||
$(BASIC_BLOCK_H) output.h ssa.h
|
||||
dce.o : dce.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H) \
|
||||
@ -1505,7 +1505,7 @@ combine.o : combine.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h function.h \
|
||||
$(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h $(TM_P_H)
|
||||
regclass.o : regclass.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h flags.h \
|
||||
$(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h real.h \
|
||||
toplev.h function.h output.h $(GGC_H) $(TM_P_H)
|
||||
toplev.h function.h output.h $(GGC_H) $(TM_P_H) $(EXPR_H)
|
||||
local-alloc.o : local-alloc.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h \
|
||||
$(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
|
||||
output.h function.h $(INSN_ATTR_H) toplev.h $(TM_P_H)
|
||||
|
@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */
|
||||
#include "config.h"
|
||||
#include "system.h"
|
||||
#include "rtl.h"
|
||||
#include "expr.h"
|
||||
#include "tm_p.h"
|
||||
#include "hard-reg-set.h"
|
||||
#include "flags.h"
|
||||
|
11
gcc/rtl.h
11
gcc/rtl.h
@ -1196,7 +1196,6 @@ extern rtx operand_subword_force PARAMS ((rtx, unsigned int,
|
||||
extern int subreg_lowpart_p PARAMS ((rtx));
|
||||
extern rtx make_safe_from PARAMS ((rtx, rtx));
|
||||
extern rtx convert_memory_address PARAMS ((enum machine_mode, rtx));
|
||||
extern rtx memory_address PARAMS ((enum machine_mode, rtx));
|
||||
extern rtx get_insns PARAMS ((void));
|
||||
extern const char *get_insn_name PARAMS ((int));
|
||||
extern rtx get_last_insn PARAMS ((void));
|
||||
@ -1212,9 +1211,6 @@ extern rtx gen_sequence PARAMS ((void));
|
||||
extern rtx immed_double_const PARAMS ((HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode));
|
||||
extern rtx force_const_mem PARAMS ((enum machine_mode, rtx));
|
||||
|
||||
/* In explow.c */
|
||||
extern rtx force_reg PARAMS ((enum machine_mode, rtx));
|
||||
|
||||
/* In varasm.c */
|
||||
extern rtx get_pool_constant PARAMS ((rtx));
|
||||
extern enum machine_mode get_pool_mode PARAMS ((rtx));
|
||||
@ -1230,10 +1226,6 @@ extern rtx assign_stack_temp PARAMS ((enum machine_mode,
|
||||
HOST_WIDE_INT, int));
|
||||
extern rtx assign_temp PARAMS ((union tree_node *,
|
||||
int, int, int));
|
||||
/* In expr.c */
|
||||
extern void emit_queue PARAMS ((void));
|
||||
extern rtx emit_move_insn PARAMS ((rtx, rtx));
|
||||
|
||||
/* In emit-rtl.c */
|
||||
extern rtx emit_insn_before PARAMS ((rtx, rtx));
|
||||
extern rtx emit_jump_insn_before PARAMS ((rtx, rtx));
|
||||
@ -1333,9 +1325,6 @@ extern rtx simplify_gen_relational PARAMS ((enum rtx_code,
|
||||
extern rtx simplify_replace_rtx PARAMS ((rtx, rtx, rtx));
|
||||
extern rtx simplify_rtx PARAMS ((rtx));
|
||||
|
||||
/* In optabs.c */
|
||||
extern rtx gen_move_insn PARAMS ((rtx, rtx));
|
||||
|
||||
/* In function.c */
|
||||
extern rtx gen_mem_addressof PARAMS ((rtx, union tree_node *));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user