diff options
author | jb <jb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-06 08:10:09 +0000 |
---|---|---|
committer | jb <jb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-06 08:10:09 +0000 |
commit | fff369f22c8f50cd4b6040f7860d38fed7aeb963 (patch) | |
tree | 88f8e06667bc01f3aee614a92f3130c18d864edd /libgfortran/generated/shape_i8.c | |
parent | ad82e5889ae755adf02837f5d1d71375b82da4a9 (diff) | |
download | gcc-fff369f22c8f50cd4b6040f7860d38fed7aeb963.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114424 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/generated/shape_i8.c')
-rw-r--r-- | libgfortran/generated/shape_i8.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libgfortran/generated/shape_i8.c b/libgfortran/generated/shape_i8.c index acf925fd8b9..e3e2bf538b9 100644 --- a/libgfortran/generated/shape_i8.c +++ b/libgfortran/generated/shape_i8.c @@ -1,5 +1,5 @@ /* Implementation of the SHAPE intrinsic - Copyright 2002 Free Software Foundation, Inc. + Copyright 2002, 2006 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> This file is part of the GNU Fortran 95 runtime library (libgfortran). @@ -47,8 +47,6 @@ shape_8 (gfc_array_i8 * const restrict ret, index_type stride; stride = ret->dim[0].stride; - if (stride == 0) - stride = 1; for (n = 0; n < GFC_DESCRIPTOR_RANK (array); n++) { |