OSDN Git Service

Some minor fixes to the rewritten syscall library.
[pf3gnuchains/gcc-fork.git] / gcc / genconstants.c
index b16a88b..0d1807e 100644 (file)
@@ -3,7 +3,7 @@
    a (define_constants ...) pattern.
 
    Copyright (C) 1987, 1991, 1995, 1998, 1999, 2000, 2001, 2003, 2004,
-   2007  Free Software Foundation, Inc.
+   2007, 2010  Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -69,6 +69,9 @@ print_enum_type (void **slot, void *info ATTRIBUTE_UNUSED)
   upcase_string (value_name);
   printf ("#define %s %d\n", value_name, def->num_values);
 
+  /* Declare the array that is generated by genenum.  */
+  printf ("extern const char *const %s_strings[];\n", def->name);
+
   return 1;
 }