(decl_attributes): Added argument.
[official-gcc.git] / gcc / bi-defs.h
blobdbf32b8137f238c7de28be1e81378e8abc4f4f85
1 /* Definitions for Bytecode Interpreter.
2 Copyright (C) 1993 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 struct node
23 char *text;
24 struct node *next;
27 struct variation
29 char *name;
30 int code;
31 struct node *inputs;
32 struct node *outputs;
33 struct node *literals;
34 struct variation *next;
37 struct def
39 char *basename;
40 char *template;
41 struct variation *variations;
42 struct def *next;
45 extern struct def *defs;
46 extern int ndefs;
47 extern void reverse();