OSDN Git Service

* fix-header.c (main): Fix loop over required_functions_list
[pf3gnuchains/gcc-fork.git] / gcc / bi-defs.h
1 /* Definitions for Bytecode Interpreter.
2    Copyright (C) 1993 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
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.
10
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.
15
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.  */
19
20
21 struct node
22 {
23   char *text;
24   struct node *next;
25 };
26
27 struct variation
28 {
29   char *name;
30   int code;
31   struct node *inputs;
32   struct node *outputs;
33   struct node *literals;
34   struct variation *next;
35 };
36
37 struct def
38 {
39   char *basename;
40   char *template;
41   struct variation *variations;
42   struct def *next;
43 };
44
45 extern struct def *defs;
46 extern int ndefs;
47 extern void reverse();