config.gcc: Reorganize --with-cpu section.
[official-gcc.git] / gcc / gencheck.c
blobfd037bdd7f57896f703f1de94efa77dcc010b3f2
1 /* Generate check macros for tree codes.
2 Copyright (C) 1998, 1999, 2000, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "bconfig.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
27 #define DEFTREECODE(SYM, NAME, TYPE, LEN) STRINGX(SYM),
29 static const char *const tree_codes[] = {
30 #include "tree.def"
31 #include "c-common.def"
32 #include "gencheck.h"
33 (char*) 0
36 static void usage (void);
38 static void
39 usage (void)
41 fputs ("Usage: gencheck\n", stderr);
44 int
45 main (int argc, char **argv ATTRIBUTE_UNUSED)
47 int i;
49 switch (argc)
51 case 1:
52 break;
54 default:
55 usage ();
56 return (1);
59 puts ("/* This file is generated using gencheck. Do not edit. */\n");
60 puts ("#ifndef GCC_TREE_CHECK_H");
61 puts ("#define GCC_TREE_CHECK_H\n");
63 for (i = 0; tree_codes[i]; i++)
65 printf ("#define %s_CHECK(t)\tTREE_CHECK (t, %s)\n",
66 tree_codes[i], tree_codes[i]);
69 puts ("\n#endif /* GCC_TREE_CHECK_H */");
70 return 0;