Commit c582986e authored by wilson's avatar wilson
Browse files

Patch from Art Haas

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


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69028 138bc75d-0d04-0410-961f-82ee72b054a4
parent 4ea9b6f3
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