]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcc1/names.cc
Fix find_always_executed_bbs handling of infinite loops
[thirdparty/gcc.git] / libcc1 / names.cc
CommitLineData
ddc8de03 1/* String definitions.
83ffe9cd 2 Copyright (C) 2014-2023 Free Software Foundation, Inc.
ddc8de03
PM
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for 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#include <cc1plugin-config.h>
21#include "names.hh"
22
23#define GCC_METHOD0(R, N) \
8db29d88 24 const char *cc1_plugin::LANG::N = # N;
ddc8de03 25#define GCC_METHOD1(R, N, A) \
8db29d88 26 const char *cc1_plugin::LANG::N = # N;
ddc8de03 27#define GCC_METHOD2(R, N, A, B) \
8db29d88 28 const char *cc1_plugin::LANG::N = # N;
ddc8de03 29#define GCC_METHOD3(R, N, A, B, C) \
8db29d88 30 const char *cc1_plugin::LANG::N = # N;
ddc8de03 31#define GCC_METHOD4(R, N, A, B, C, D) \
8db29d88 32 const char *cc1_plugin::LANG::N = # N;
ddc8de03 33#define GCC_METHOD5(R, N, A, B, C, D, E) \
8db29d88 34 const char *cc1_plugin::LANG::N = # N;
ddc8de03 35#define GCC_METHOD7(R, N, A, B, C, D, E, F, G) \
8db29d88 36 const char *cc1_plugin::LANG::N = # N;
ddc8de03 37
8db29d88 38#define LANG c
ddc8de03 39#include "gcc-c-fe.def"
8db29d88
AO
40#undef LANG
41
42#define LANG cp
43#include "gcc-cp-fe.def"
44#undef LANG
ddc8de03
PM
45
46#undef GCC_METHOD0
47#undef GCC_METHOD1
48#undef GCC_METHOD2
49#undef GCC_METHOD3
50#undef GCC_METHOD4
51#undef GCC_METHOD5
52#undef GCC_METHOD7