]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2015-10-14 Maxim Ostapenko <m.ostapenko@partner.samsung.com>
authorchefmax <chefmax@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Oct 2015 12:06:29 +0000 (12:06 +0000)
committerchefmax <chefmax@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Oct 2015 12:06:29 +0000 (12:06 +0000)
* parse.c (decode_statement): Initialize M to MATCH_NO.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@228807 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 4bd35774cf9e4b9dc1a7bdb4896ec6294b7896a1..8f49ee7a8ed8c658236d2a2605cb2c59a27cce8e 100644 (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>
 
index 6f3d24ba2ced925220e193dd2ae1b6cd94f68378..4925c7ee58a3acdf28bf08a6ec6ba79f5937f886 100644 (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 ();