OSDN Git Service

Patch from Art Haas
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 7 Jul 2003 04:06:29 +0000 (04:06 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 7 Jul 2003 04:06:29 +0000 (04:06 +0000)
* 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

gcc/ChangeLog
gcc/f/global.c

index 51b9ffe..b7d4823 100644 (file)
@@ -1,3 +1,8 @@
+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
index f175f1e..f6c23cd 100644 (file)
@@ -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