This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch, fortran] Inline MATMUL(A,TRANSPOSE(B)), PR 66094


Am 24.01.2016 um 00:06 schrieb Jerry DeLisle:

Regards

     Thomas


Yes, OK.

Thanks, committed this morning.

I have also just committed an obvious correction where I forgot
a break statement.

Regards

	Thomas

2016-01-24  Thomas Koenig  <tkoenig@gcc.gnu.org>

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

Index: frontend-passes.c
===================================================================
--- frontend-passes.c	(Revision 232774)
+++ frontend-passes.c	(Arbeitskopie)
@@ -2251,6 +2251,7 @@ matmul_lhs_realloc (gfc_expr *c, gfc_expr *a, gfc_
 				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);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]