diff options
author | Richard Guenther <rguenther@suse.de> | 2007-10-30 09:05:44 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2007-10-30 09:05:44 +0000 |
commit | 19d8eb46e30f295f89708eafec1170e712565823 (patch) | |
tree | 2fcb5727da730f39b877966d6d187c0607164308 | |
parent | 56ac967158f77323b97f1b4fcd634121b391bd32 (diff) | |
download | gcc-19d8eb46e30f295f89708eafec1170e712565823.zip gcc-19d8eb46e30f295f89708eafec1170e712565823.tar.gz gcc-19d8eb46e30f295f89708eafec1170e712565823.tar.bz2 |
Makefile.in (dse.o): Add $(OPTABS_H) and $(RECOG_H)
2007-10-30 Richard Guenther <rguenther@suse.de>
* Makefile.in (dse.o): Add $(OPTABS_H) and $(RECOG_H)
* dependencies.
From-SVN: r129768
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9e7199f..90dfa57ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-10-30 Richard Guenther <rguenther@suse.de> + + * Makefile.in (dse.o): Add $(OPTABS_H) and $(RECOG_H) dependencies. + 2007-10-29 Dorit Nuzman <dorit@il.ibm.com> PR tree-optimization/32893 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cc47ed0..9cfb6e7 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2540,7 +2540,7 @@ dce.o : dce.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ dse.o : dse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ $(TREE_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h $(RECOG_H) \ $(EXPR_H) $(DF_H) cselib.h $(DBGCNT_H) timevar.h tree-pass.h \ - alloc-pool.h $(ALIAS_H) dse.h + alloc-pool.h $(ALIAS_H) dse.h $(OPTABS_H) $(RECOG_H) fwprop.o : fwprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ toplev.h insn-config.h $(RECOG_H) $(FLAGS_H) $(OBSTACK_H) $(BASIC_BLOCK_H) \ output.h $(DF_H) alloc-pool.h $(TIMEVAR_H) tree-pass.h |