2015-08-28 15:33:40 +00:00
|
|
|
/* String declarations.
|
2019-06-02 15:48:37 +00:00
|
|
|
Copyright (C) 2014-2019 Free Software Foundation, Inc.
|
2015-08-28 15:33:40 +00:00
|
|
|
|
|
|
|
This file is part of GCC.
|
|
|
|
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation; either version 3, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GCC; see the file COPYING3. If not see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#ifndef CC1_PLUGIN_NAMES_HH
|
|
|
|
#define CC1_PLUGIN_NAMES_HH
|
|
|
|
|
|
|
|
namespace cc1_plugin
|
|
|
|
{
|
|
|
|
#define GCC_METHOD0(R, N) \
|
|
|
|
extern const char *N;
|
|
|
|
#define GCC_METHOD1(R, N, A) \
|
|
|
|
extern const char *N;
|
|
|
|
#define GCC_METHOD2(R, N, A, B) \
|
|
|
|
extern const char *N;
|
|
|
|
#define GCC_METHOD3(R, N, A, B, C) \
|
|
|
|
extern const char *N;
|
|
|
|
#define GCC_METHOD4(R, N, A, B, C, D) \
|
|
|
|
extern const char *N;
|
|
|
|
#define GCC_METHOD5(R, N, A, B, C, D, E) \
|
|
|
|
extern const char *N;
|
|
|
|
#define GCC_METHOD7(R, N, A, B, C, D, E, F, G) \
|
|
|
|
extern const char *N;
|
|
|
|
|
2017-10-07 00:16:47 +00:00
|
|
|
namespace c
|
|
|
|
{
|
|
|
|
// This code defines global string constants, one for each method in
|
|
|
|
// gcc-c-fe.def. This is needed so that they can be used as
|
|
|
|
// template arguments elsewhere.
|
2015-08-28 15:33:40 +00:00
|
|
|
#include "gcc-c-fe.def"
|
2017-10-07 00:16:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace cp
|
|
|
|
{
|
|
|
|
// This code defines global string constants, one for each method in
|
|
|
|
// gcc-cp-fe.def. This is needed so that they can be used as
|
|
|
|
// template arguments elsewhere.
|
|
|
|
#include "gcc-cp-fe.def"
|
|
|
|
}
|
2015-08-28 15:33:40 +00:00
|
|
|
|
|
|
|
#undef GCC_METHOD0
|
|
|
|
#undef GCC_METHOD1
|
|
|
|
#undef GCC_METHOD2
|
|
|
|
#undef GCC_METHOD3
|
|
|
|
#undef GCC_METHOD4
|
|
|
|
#undef GCC_METHOD5
|
|
|
|
#undef GCC_METHOD7
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CC1_PLUGIN_NAMES_HH
|