diff options
author | Magnus Granberg <baldrick@free.fr> | 2013-05-21 15:01:34 +0200 |
---|---|---|
committer | Duncan Sands <baldrick@gcc.gnu.org> | 2013-05-21 13:01:34 +0000 |
commit | e60661f091d0a1c8f137e6d2d580676d90628e4f (patch) | |
tree | d153ba1311ccb62aac95c1065047ccf5c884c995 | |
parent | 4a61be9acc1e0a4d0258f47da59a1463a0e59b8d (diff) | |
download | gcc-e60661f091d0a1c8f137e6d2d580676d90628e4f.zip gcc-e60661f091d0a1c8f137e6d2d580676d90628e4f.tar.gz gcc-e60661f091d0a1c8f137e6d2d580676d90628e4f.tar.bz2 |
Readd TARGET_H to the list of exported plugin headers, fixing PR plugins/56754.
TARGET_H was removed in commit 188166, however several plugins need it, see the
PR for details. Applying under the trivial rule.
From-SVN: r199144
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3abc99c..6542269 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-05-21 Magnus Granberg <baldrick@free.fr> + + PR plugins/56754 + * Makefile.in (PLUGIN_HEADERS): Add TARGET_H + 2013-05-21 Richard Biener <rguenther@suse.de> PR tree-optimization/57318 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 63d114b..1a965c1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -4646,7 +4646,8 @@ PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ $(C_PRAGMA_H) $(CPPLIB_H) $(FUNCTION_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) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) version.h + $(IPA_PROP_H) $(TARGET_H) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) \ + version.h # generate the 'build fragment' b-header-vars s-header-vars: Makefile |