Commit a220f43d by Thomas Koenig

re PR fortran/66094 (Handle transpose(A) in inline matmul)

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
parent a59b92b0
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> 2016-01-24 Dominique d'Humieres <dominiq@lps.ens.fr>
PR fortran/68283 PR fortran/68283
......
...@@ -2251,6 +2251,7 @@ matmul_lhs_realloc (gfc_expr *c, gfc_expr *a, gfc_expr *b, ...@@ -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, c, 2),
get_array_inq_function (GFC_ISYM_SIZE, b, 1)); get_array_inq_function (GFC_ISYM_SIZE, b, 1));
cond = build_logical_expr (INTRINSIC_OR, ne1, ne2); cond = build_logical_expr (INTRINSIC_OR, ne1, ne2);
break;
case A2B1: case A2B1:
ar->start[0] = get_array_inq_function (GFC_ISYM_SIZE, a, 1); ar->start[0] = get_array_inq_function (GFC_ISYM_SIZE, a, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment