* parse.c (decode_statement): Fix matching of BLOCK DATA.
authorTobias Schlüter <tobias.schlueter@physik.uni-muenchen.de>
Sat, 10 Jul 2004 21:52:20 +0000 (23:52 +0200)
committerTobias Schlüter <tobi@gcc.gnu.org>
Sat, 10 Jul 2004 21:52:20 +0000 (23:52 +0200)
From-SVN: r84474

gcc/fortran/ChangeLog
gcc/fortran/parse.c

index ded551cb2d67dc2b5ce33263ee5f5dcf4f26ea44..fe6c66492935237a05c8771e65da4c46b6b95b05 100644 (file)
@@ -10,6 +10,8 @@
        * trans-expr.c (gfc_conv_structure): Handle initialization
        of scalar pointer components.
 
+       * parse.c (decode_statement): Fix matching of BLOCK DATA.
+
 2004-07-10  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
 
        * trans-common.c: Fix whitespace issues, make variable names
index 15a53ea3e457bd59650b62c54a5ab0d60f5ed26c..1295fb0e5f90aa5f377b6fc842684e907bf4306f 100644 (file)
@@ -178,7 +178,7 @@ decode_statement (void)
 
     case 'b':
       match ("backspace", gfc_match_backspace, ST_BACKSPACE);
-      match ("block data", gfc_match_block_data, ST_BLOCK_DATA);
+      match ("block data", gfc_match_block_data, ST_BLOCK_DATA);
       break;
 
     case 'c':