From fff369f22c8f50cd4b6040f7860d38fed7aeb963 Mon Sep 17 00:00:00 2001 From: jb Date: Tue, 6 Jun 2006 08:10:09 +0000 Subject: 2006-06-06 Janne Blomqvist * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114424 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgfortran/generated/matmul_c10.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'libgfortran/generated/matmul_c10.c') diff --git a/libgfortran/generated/matmul_c10.c b/libgfortran/generated/matmul_c10.c index 93032f81404..72c3a7dba72 100644 --- a/libgfortran/generated/matmul_c10.c +++ b/libgfortran/generated/matmul_c10.c @@ -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 This file is part of the GNU Fortran 95 runtime library (libgfortran). @@ -120,15 +120,6 @@ matmul_c10 (gfc_array_c10 * const restrict retarray, retarray->offset = 0; } - if (retarray->dim[0].stride == 0) - retarray->dim[0].stride = 1; - - /* This prevents constifying the input arguments. */ - if (a->dim[0].stride == 0) - a->dim[0].stride = 1; - if (b->dim[0].stride == 0) - b->dim[0].stride = 1; - if (GFC_DESCRIPTOR_RANK (retarray) == 1) { -- cgit v1.2.1