diff options
author | Jeffrey A Law <law@cygnus.com> | 2001-06-19 14:13:13 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2001-06-19 08:13:13 -0600 |
commit | 57fae080ee8ed7fe944a94e9c003780558896c42 (patch) | |
tree | b1fddd1807e01744bc1c01241b3abafe93e47deb | |
parent | 30eadf3d0997b5024c437fcfb7d7edc3531d2291 (diff) | |
download | gcc-57fae080ee8ed7fe944a94e9c003780558896c42.zip gcc-57fae080ee8ed7fe944a94e9c003780558896c42.tar.gz gcc-57fae080ee8ed7fe944a94e9c003780558896c42.tar.bz2 |
Makefile.in (OBJS): Replace dce.o with ssa-dce.o
* Makefile.in (OBJS): Replace dce.o with ssa-dce.o
(dependencies): Replace dce.c with ssa-dce.c and dce.o with
ssa-dce.o.
From-SVN: r43459
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9c5835a..d83f3c2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,9 @@ Tue Jun 19 07:53:52 2001 Jeffrey A Law (law@cygnus.com) * ssa-dce.c: Renamed from dce.c. + * Makefile.in (OBJS): Replace dce.o with ssa-dce.o + (dependencies): Replace dce.c with ssa-dce.c and dce.o with + ssa-dce.o. 2001-06-19 Eric Christopher <echristo@redhat.com> diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 75b3dbc..949211f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -731,7 +731,7 @@ C_OBJS = c-parse.o c-lang.o $(C_AND_OBJC_OBJS) OBJS = \ alias.o bb-reorder.o bitmap.o builtins.o caller-save.o calls.o \ - combine.o conflict.o convert.o cse.o cselib.o dbxout.o dce.o \ + combine.o conflict.o convert.o cse.o cselib.o dbxout.o ssa-dce.o \ dependence.o diagnostic.o doloop.o dominance.o dwarf2asm.o dwarf2out.o \ dwarfout.o emit-rtl.o except.o explow.o expmed.o expr.o final.o flow.o \ fold-const.o function.o gcse.o genrtl.o ggc-common.o global.o graph.o \ @@ -1436,7 +1436,7 @@ lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) hard-reg-set.h flags.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) \ +ssa-dce.o : ssa-dce.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H) \ ssa.h insn-config.h $(RECOG_H) output.h conflict.o : conflict.c $(CONFIG_H) $(SYSTEM_H) $(OBSTACK_H) $(HASHTAB_H) \ $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H) |