complex-lowering: Better handling of PAREN_EXPR [PR68855]
[official-gcc.git] / gcc / testsuite / g++.dg / plugin / header_plugin.c
bloba024194e19f3591549d406789fbeace703b6e452
1 #include "gcc-plugin.h"
2 #include <stdlib.h>
3 #include "config.h"
4 #include "system.h"
5 #include "coretypes.h"
6 #include "tree.h"
7 #include "tree-pass.h"
8 #include "intl.h"
10 /* reqs */
11 #include "tm.h"
13 /* gcc/ headers. */
14 #include "cp/cp-tree.h"
15 #include "diagnostic.h"
16 #include "c-family/c-common.h"
17 #include "c-family/c-pretty-print.h"
18 #include "tree-iterator.h"
19 #include "plugin.h"
20 #include "langhooks.h"
21 #include "cp/cxx-pretty-print.h"
22 #include "cp/name-lookup.h"
24 int plugin_is_GPL_compatible;
26 int
27 plugin_init (struct plugin_name_args *plugin_info,
28 struct plugin_gcc_version *version)
30 return 0;