diff options
author | Steve Ellcey <sellcey@mips.com> | 2014-01-10 17:54:10 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2014-01-10 17:54:10 +0000 |
commit | 1aa26aacc4d91373d487eda1eb898d7e4332e14c (patch) | |
tree | 25334f4b007522d8f05ba7d7a605c63086acba53 | |
parent | 8566e0e726a1b7311c4b2222e1bdb9784214af05 (diff) | |
download | gcc-1aa26aacc4d91373d487eda1eb898d7e4332e14c.zip gcc-1aa26aacc4d91373d487eda1eb898d7e4332e14c.tar.gz gcc-1aa26aacc4d91373d487eda1eb898d7e4332e14c.tar.bz2 |
re PR plugins/59335 (Plugin doesn't build on trunk)
2014-01-10 Steve Ellcey <sellcey@mips.com>
PR plugins/59335
* Makefile.in (PLUGIN_HEADERS): Add gimplify.h, gimple-iterator.h,
gimple-ssa.h, fold-const.h, tree-cfg.h, tree-into-ssa.h,
tree-ssanames.h, print-tree.h, varasm.h, and context.h.
From-SVN: r206535
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 243f551..edc43e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2014-01-10 Steve Ellcey <sellcey@mips.com> + + PR plugins/59335 + * Makefile.in (PLUGIN_HEADERS): Add gimplify.h, gimple-iterator.h, + gimple-ssa.h, fold-const.h, tree-cfg.h, tree-into-ssa.h, + tree-ssanames.h, print-tree.h, varasm.h, and context.h. + 2014-01-10 Richard Earnshaw <rearnsha@arm.com> PR target/59744 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 8eb4f68..76766ba 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3118,7 +3118,9 @@ PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ cppdefault.h flags.h $(MD5_H) params.def params.h prefix.h tree-inline.h \ $(GIMPLE_PRETTY_PRINT_H) realmpfr.h \ $(IPA_PROP_H) $(TARGET_H) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) \ - version.h stringpool.h + version.h stringpool.h gimplify.h gimple-iterator.h gimple-ssa.h \ + fold-const.h tree-cfg.h tree-into-ssa.h tree-ssanames.h print-tree.h \ + varasm.h context.h # generate the 'build fragment' b-header-vars s-header-vars: Makefile |