parse.c (decode_statement): Initialize M to MATCH_NO.

2015-10-14  Maxim Ostapenko  <m.ostapenko@partner.samsung.com>

	* parse.c (decode_statement): Initialize M to MATCH_NO.

From-SVN: r228807
This commit is contained in:
Max Ostapenko 2015-10-14 15:06:29 +03:00 committed by Maxim Ostapenko
parent ddf56386c1
commit d5efd4498a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-10-14 Maxim Ostapenko <m.ostapenko@partner.samsung.com>
* parse.c (decode_statement): Initialize M to MATCH_NO.
2015-10-13 Jakub Jelinek <jakub@redhat.com>
Ilya Verbin <ilya.verbin@intel.com>

View File

@ -296,7 +296,7 @@ decode_statement (void)
gfc_namespace *ns;
gfc_statement st;
locus old_locus;
match m;
match m = MATCH_NO;
char c;
gfc_enforce_clean_symbol_state ();