re PR fortran/66094 (Handle transpose(A) in inline matmul)
authorThomas Koenig <tkoenig@gcc.gnu.org>
Sun, 24 Jan 2016 18:15:08 +0000 (18:15 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Sun, 24 Jan 2016 18:15:08 +0000 (18:15 +0000)
2016-01-24  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/66094
* frontend-passes.c (matmul_lhs_realloc):  Add
forgotten break statement.

From-SVN: r232779

gcc/fortran/ChangeLog
gcc/fortran/frontend-passes.c

index 294fc66..414991b 100644 (file)
@@ -1,3 +1,9 @@
+2016-01-24  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR fortran/66094
+       * frontend-passes.c (matmul_lhs_realloc):  Add
+       forgotten break statement.
+
 2016-01-24  Dominique d'Humieres <dominiq@lps.ens.fr>
 
        PR fortran/68283
index 340fd6e..76edbae 100644 (file)
@@ -2251,6 +2251,7 @@ matmul_lhs_realloc (gfc_expr *c, gfc_expr *a, gfc_expr *b,
                                get_array_inq_function (GFC_ISYM_SIZE, c, 2),
                                get_array_inq_function (GFC_ISYM_SIZE, b, 1));
       cond = build_logical_expr (INTRINSIC_OR, ne1, ne2);
+      break;
 
     case A2B1:
       ar->start[0] = get_array_inq_function (GFC_ISYM_SIZE, a, 1);