* parse.c (decode_statement): Fix matching of BLOCK DATA.

From-SVN: r84474
This commit is contained in:
Tobias Schlüter 2004-07-10 23:52:20 +02:00 committed by Tobias Schlüter
parent f183d3749f
commit 24727d92ff
2 changed files with 3 additions and 1 deletions

View 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

View 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':