Home | History | Annotate | Line # | Download | only in d
d-target.h revision 1.1
      1 /* d-target.h -- Data structure definitions for target-specific D behavior.
      2    Copyright (C) 2017-2019 Free Software Foundation, Inc.
      3 
      4    This program is free software; you can redistribute it and/or modify it
      5    under the terms of the GNU General Public License as published by the
      6    Free Software Foundation; either version 3, or (at your option) any
      7    later version.
      8 
      9    This program is distributed in the hope that it will be useful,
     10    but WITHOUT ANY WARRANTY; without even the implied warranty of
     11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     12    GNU General Public License for more details.
     13 
     14    You should have received a copy of the GNU General Public License
     15    along with this program; see the file COPYING3.  If not see
     16    <http://www.gnu.org/licenses/>.  */
     17 
     18 #ifndef GCC_D_TARGET_H
     19 #define GCC_D_TARGET_H
     20 
     21 #define DEFHOOKPOD(NAME, DOC, TYPE, INIT) TYPE NAME;
     22 #define DEFHOOK(NAME, DOC, TYPE, PARAMS, INIT) TYPE (* NAME) PARAMS;
     23 #define DEFHOOK_UNDOC DEFHOOK
     24 #define HOOKSTRUCT(FRAGMENT) FRAGMENT
     25 
     26 #include "d-target.def"
     27 
     28 /* Each target can provide their own.  */
     29 extern struct gcc_targetdm targetdm;
     30 
     31 /* Used by target to add predefined version idenditiers.  */
     32 extern void d_add_builtin_version (const char *);
     33 
     34 #endif /* GCC_D_TARGET_H  */
     35