OSDN Git Service

* Makefile.in (ssa.o, regclass.o): Depend on $(EXPR_H).
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 13 Apr 2001 16:34:41 +0000 (16:34 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 13 Apr 2001 16:34:41 +0000 (16:34 +0000)
* regclass.c, ssa.c: Include expr.h.

* rtl.h (memory_address, force_reg, emit_queue, emit_move_insn,
gen_move_insn): Delete redundant declarations.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41337 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/Makefile.in
gcc/regclass.c
gcc/rtl.h
gcc/ssa.c

index 218fda9..810ee52 100644 (file)
@@ -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
index 93c77bc..4634995 100644 (file)
@@ -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)
index f65b2e9..001015f 100644 (file)
@@ -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"
index 5465030..d794322 100644 (file)
--- a/gcc/rtl.h
+++ b/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 *));
 
index d57720e..7927274 100644 (file)
--- a/gcc/ssa.c
+++ b/gcc/ssa.c
@@ -33,6 +33,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "system.h"
 
 #include "rtl.h"
+#include "expr.h"
 #include "varray.h"
 #include "partition.h"
 #include "sbitmap.h"