From: David Malcolm Date: Tue, 30 Sep 2014 15:41:11 +0000 (+0000) Subject: PR plugins/63410: Fix missing headers for plugins X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b355f52ed1a3d6a4a684c9d213d786f3f026de2d;p=gcc.git PR plugins/63410: Fix missing headers for plugins gcc/ PR plugins/63410 * Makefile.in (PRETTY_PRINT_H): Add wide-int-print.h. (PLUGIN_HEADERS): Add pass-instances.def. From-SVN: r215727 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 98b13064cef..8795f320cde 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-09-30 David Malcolm + + PR plugins/63410 + * Makefile.in (PRETTY_PRINT_H): Add wide-int-print.h. + (PLUGIN_HEADERS): Add pass-instances.def. + 2014-09-30 James Greenhalgh * config/aarch64/aarch64-simd-builtins.def (sqdmull_laneq): Expand diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 3dd9d8f3393..b38f8ef1057 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -916,7 +916,7 @@ TREE_SSA_H = tree-ssa.h tree-ssa-operands.h \ $(BITMAP_H) sbitmap.h $(BASIC_BLOCK_H) $(GIMPLE_H) \ $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) \ tree-ssa-alias.h -PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H) +PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H) wide-int-print.h TREE_PRETTY_PRINT_H = tree-pretty-print.h $(PRETTY_PRINT_H) GIMPLE_PRETTY_PRINT_H = gimple-pretty-print.h $(TREE_PRETTY_PRINT_H) DIAGNOSTIC_CORE_H = diagnostic-core.h $(INPUT_H) bversion.h diagnostic.def @@ -3148,7 +3148,7 @@ PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \ tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \ tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \ - hash-set.h + hash-set.h pass-instances.def # generate the 'build fragment' b-header-vars s-header-vars: Makefile