Commit 1dbb6ce8 by Art Haas Committed by Jim Wilson

Patch from Art Haas

* f/global.c (ffeglobal_type_string_): Fix obsolete GCC array
initializer syntax.

From-SVN: r69028
parent 8338d44d
2003-07-06 Art Haas <ahaas@airmail.net>
* f/global.c (ffeglobal_type_string_): Fix obsolete GCC array
initializer syntax.
2003-07-06 James E Wilson <wilson@tuliptree.org>
PR optimization/9812
......
......@@ -62,14 +62,14 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
static ffenameSpace ffeglobal_filewide_ = NULL;
static const char *const ffeglobal_type_string_[] =
{
[FFEGLOBAL_typeNONE] "??",
[FFEGLOBAL_typeMAIN] "main program",
[FFEGLOBAL_typeEXT] "external",
[FFEGLOBAL_typeSUBR] "subroutine",
[FFEGLOBAL_typeFUNC] "function",
[FFEGLOBAL_typeBDATA] "block data",
[FFEGLOBAL_typeCOMMON] "common block",
[FFEGLOBAL_typeANY] "?any?"
[FFEGLOBAL_typeNONE] = "??",
[FFEGLOBAL_typeMAIN] = "main program",
[FFEGLOBAL_typeEXT] = "external",
[FFEGLOBAL_typeSUBR] = "subroutine",
[FFEGLOBAL_typeFUNC] = "function",
[FFEGLOBAL_typeBDATA] = "block data",
[FFEGLOBAL_typeCOMMON] = "common block",
[FFEGLOBAL_typeANY] = "?any?"
};
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment