aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/m4/matmull.m4
diff options
context:
space:
mode:
authorJanne Blomqvist <jb@gcc.gnu.org>2006-06-06 11:10:09 +0300
committerJanne Blomqvist <jb@gcc.gnu.org>2006-06-06 11:10:09 +0300
commit6ff24d45dc7bf2691b6c2c3f9e9830360dc572a6 (patch)
tree88f8e06667bc01f3aee614a92f3130c18d864edd /libgfortran/m4/matmull.m4
parent0d3b0abea32c88c867948cd1786bd9df3634ac89 (diff)
downloadgcc-6ff24d45dc7bf2691b6c2c3f9e9830360dc572a6.zip
gcc-6ff24d45dc7bf2691b6c2c3f9e9830360dc572a6.tar.gz
gcc-6ff24d45dc7bf2691b6c2c3f9e9830360dc572a6.tar.bz2
in_pack.m4: Add TODO comment about detecting temporaries...
2006-06-06 Janne Blomqvist <jb@gcc.gnu.org> * m4/in_pack.m4: Add TODO comment about detecting temporaries, remove test for stride 0, update copyright year. * m4/transpose.m4: Remove test for stride 0, update copyright year. * m4/iforeach.m4: Likewise. * m4/shape.m4: Likewise. * m4/in_unpack.m4: Likewise. * m4/reshape.m4: Likewise. * m4/ifunction.m4: Likewise. * m4/matmul.m4: Likewise. * m4/matmull.m4: Likewise. * intrinsics/etime.c: Likewise. * intrinsics/transpose_generic.c: Likewise. * intrinsics/spread_generic.c: Likewise. * intrinsics/stat.c: Likewise. * intrinsics/reshape_generic.c: Likewise. * intrinsics/random.c: Likewise. * generated/*: Regenerated from above changed m4 files. From-SVN: r114424
Diffstat (limited to 'libgfortran/m4/matmull.m4')
-rw-r--r--libgfortran/m4/matmull.m49
1 files changed, 1 insertions, 8 deletions
diff --git a/libgfortran/m4/matmull.m4 b/libgfortran/m4/matmull.m4
index 5acb4cb..f880199 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)