]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/gencheck.c
Oops, missed ChangeLog in last checkin...
[thirdparty/gcc.git] / gcc / gencheck.c
CommitLineData
12b195d9 1/* Generate check macros for tree codes.
9311a396 2 Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
12b195d9
ML
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
12b195d9
ML
21#include "hconfig.h"
22#include "system.h"
23
24#define DEFTREECODE(SYM, NAME, TYPE, LEN) STRINGIFY(SYM),
25
85fda1eb 26const char *tree_codes[] = {
12b195d9 27#include "tree.def"
3103b7db 28#include "gencheck.h"
12b195d9
ML
29(char*)0
30};
31
a94ae8f5 32static void usage PARAMS ((void));
c1b59dce
KG
33
34static void
35usage ()
12b195d9
ML
36{
37 fprintf (stderr,"Usage: gencheck\n");
38}
39
a94ae8f5 40extern int main PARAMS ((int, char **));
c1b59dce
KG
41
42int
43main (argc, argv)
12b195d9 44 int argc;
c1b59dce 45 char **argv ATTRIBUTE_UNUSED;
12b195d9
ML
46{
47 int i;
9ec36da5 48
12b195d9
ML
49 switch (argc)
50 {
51 case 1:
52 break;
9ec36da5 53
12b195d9
ML
54 default:
55 usage ();
c1b59dce 56 return (1);
12b195d9
ML
57 }
58
59 printf ("/* This file is generated using gencheck. Do not edit. */\n");
60 for (i = 0; tree_codes[i]; i++)
61 {
62 printf ("#define %s_CHECK(t)\tTREE_CHECK (t, %s)\n",
63 tree_codes[i], tree_codes[i]);
12b195d9
ML
64 }
65
66 return 0;
67}
68
402cdad5 69#if defined(USE_C_ALLOCA)
83e0821b
KG
70/* FIXME: We only need an xmalloc definition because we are forced to
71 link with alloca.o on some platforms. This should go away if/when
72 we link against libiberty.a. (ghazi@caip.rutgers.edu 6/3/98) */
2778b98d 73PTR
83e0821b 74xmalloc (nbytes)
2778b98d 75 size_t nbytes;
83e0821b 76{
2778b98d 77 register PTR tmp = (PTR) malloc (nbytes);
83e0821b
KG
78
79 if (!tmp)
80 {
402cdad5
RH
81 fprintf (stderr, "can't allocate %d bytes (out of virtual memory)\n",
82 nbytes);
83e0821b
KG
83 exit (FATAL_EXIT_CODE);
84 }
85
86 return tmp;
87}
402cdad5 88#endif /* USE_C_ALLOCA */