diff options
author | Tom Tromey <tromey@redhat.com> | 2013-09-25 15:51:26 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2013-09-25 15:51:26 +0000 |
commit | d2db5e91c215e53ebf2c9fae6346fc3224cefe7f (patch) | |
tree | da85c81d9b7bb64b963b1a7c4c4c3fecb6f516a8 | |
parent | af33629e0a154de55f8b5c4459d9e09eee403b71 (diff) | |
download | gcc-d2db5e91c215e53ebf2c9fae6346fc3224cefe7f.zip gcc-d2db5e91c215e53ebf2c9fae6346fc3224cefe7f.tar.gz gcc-d2db5e91c215e53ebf2c9fae6346fc3224cefe7f.tar.bz2 |
(clh 6)
From-SVN: r202893
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/Makefile.in | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b6b751b..0ddbcd5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2013-09-25 Tom Tromey <tromey@redhat.com> + + * Makefile.in (generated_files): Add options.h, + target-hooks-def.h, insn-opinit.h, + common/common-target-hooks-def.h, pass-instances.def, + c-family/c-target-hooks-def.h. + 2013-09-25 Jeff Law <law@redhat.com> * tree-ssa-threadedge.c (thread_across_edge): Use foo.last () rather diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a2e3f7a..62b5eab 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3894,7 +3894,10 @@ s-gtype: build/gengtype$(build_exeext) $(filter-out [%], $(GTFILES)) \ generated_files = config.h tm.h $(TM_P_H) $(TM_H) multilib.h \ $(simple_generated_h) specs.h \ tree-check.h genrtl.h insn-modes.h tm-preds.h tm-constrs.h \ - $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h + $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h \ + options.h target-hooks-def.h insn-opinit.h \ + common/common-target-hooks-def.h pass-instances.def \ + c-family/c-target-hooks-def.h # In order for parallel make to really start compiling the expensive # objects from $(OBJS) as early as possible, build all their |