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
This commit is contained in:
parent
a59b92b0c7
commit
a220f43d11
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue