array.c (gfc_match_array_constructor): Remove set, but unused variable.
authorSteven G. Kargl <kargl@gcc.gnu.org>
Thu, 20 Oct 2016 23:55:19 +0000 (23:55 +0000)
committerSteven G. Kargl <kargl@gcc.gnu.org>
Thu, 20 Oct 2016 23:55:19 +0000 (23:55 +0000)
2016-10-20  Steven G. Kargl  <kargl@gcc.gnu.org>

* array.c (gfc_match_array_constructor): Remove set, but unused
variable.

From-SVN: r241388

gcc/fortran/ChangeLog
gcc/fortran/array.c

index e4c7808..b13be23 100644 (file)
@@ -1,3 +1,8 @@
+2016-10-20  Steven G. Kargl  <kargl@gcc.gnu.org>
+
+       * array.c (gfc_match_array_constructor): Remove set, but unused
+       variable.
+
 2016-10-20  Andre Vehreschild  <vehre@gcc.gnu.org>
 
        * class.c (gfc_build_class_symbol): Set the kind of _len to
index 14e20a3..3e0218a 100644 (file)
@@ -1090,7 +1090,7 @@ match
 gfc_match_array_constructor (gfc_expr **result)
 {
   gfc_constructor *c;
-  gfc_constructor_base head, new_cons;
+  gfc_constructor_base head;
   gfc_undo_change_set changed_syms;
   gfc_expr *expr;
   gfc_typespec ts;
@@ -1115,7 +1115,7 @@ gfc_match_array_constructor (gfc_expr **result)
     end_delim = " /)";
 
   where = gfc_current_locus;
-  head = new_cons = NULL;
+  head = NULL;
   seen_ts = false;
 
   /* Try to match an optional "type-spec ::"  */