]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gcc-plugin.h
Regenerate gcc.pot
[thirdparty/gcc.git] / gcc / gcc-plugin.h
CommitLineData
68a607d8 1/* Public header file for plugins to include.
a945c346 2 Copyright (C) 2009-2024 Free Software Foundation, Inc.
68a607d8
DN
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3, or (at your option)
9any later version.
10
11GCC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_PLUGIN_H
21#define GCC_PLUGIN_H
22
3e17e31d
RAE
23#ifndef IN_GCC
24#define IN_GCC
25#endif
26
27#include "config.h"
28#include "system.h"
654e56c9 29#include "coretypes.h"
c7131fb2 30#include "backend.h"
9fdcd34e 31#include "cfghooks.h"
3bb2b4cd 32#include "hard-reg-set.h"
60393bbc
AM
33#include "cfgrtl.h"
34#include "cfganal.h"
35#include "lcm.h"
36#include "cfgbuild.h"
37#include "cfgcleanup.h"
c582198b
AM
38#include "plugin-api.h"
39#include "ipa-ref.h"
40e23961
MC
40#include "alias.h"
41#include "flags.h"
40e23961 42#include "tree-core.h"
40e23961
MC
43#include "fold-const.h"
44#include "tree-check.h"
e677a9d4 45#include "plugin.h"
2d7f5f9b 46
68a607d8 47#endif /* GCC_PLUGIN_H */