diff options
Diffstat (limited to 'libgfortran/m4/matmull.m4')
-rw-r--r-- | libgfortran/m4/matmull.m4 | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libgfortran/m4/matmull.m4 b/libgfortran/m4/matmull.m4 index 5acb4cb06cd..f880199eb1a 100644 --- a/libgfortran/m4/matmull.m4 +++ b/libgfortran/m4/matmull.m4 @@ -1,5 +1,5 @@ `/* Implementation of the MATMUL intrinsic - Copyright 2002, 2005 Free Software Foundation, Inc. + Copyright 2002, 2005, 2006 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). @@ -113,13 +113,6 @@ matmul_`'rtype_code (rtype * const restrict retarray, } dest = retarray->data; - if (retarray->dim[0].stride == 0) - retarray->dim[0].stride = 1; - if (a->dim[0].stride == 0) - a->dim[0].stride = 1; - if (b->dim[0].stride == 0) - b->dim[0].stride = 1; - sinclude(`matmul_asm_'rtype_code`.m4')dnl if (GFC_DESCRIPTOR_RANK (retarray) == 1) |