diff options
author | Paul Brook <paul@codesourcery.com> | 2004-05-18 19:03:26 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2004-05-18 19:03:26 +0000 |
commit | c9e66eda1aa76b77d9a56bf0d1b19a1576c37a62 (patch) | |
tree | 569bf2d4b68fde558de654650a2688d76b403819 /libgfortran/m4/iforeach.m4 | |
parent | b79634e3d89667ac3b67531df917974241702862 (diff) | |
download | gcc-c9e66eda1aa76b77d9a56bf0d1b19a1576c37a62.tar.gz |
Makefile.am: Remove references to types.m4.
* Makefile.am: Remove references to types.m4.
* m4/iparm.m4: Merge with types.m4.
* m4/types.m4: Remove.
* m4/cshift1.m4, m4/dotprod.m4, m4/dotprodc.m4, m4/dotprodl.m4,
m4/eoshift1.m4, m4/eoshift3.m4, m4/iforeach.m4, m4/ifunction.m4,
m4/in_pack.m4, m4/in_unpack.m4, m4/iparm.m4, m4/matmul.m4,
m4/matmull.m4, m4/maxloc0.m4, m4/maxloc1.m4, m4/maxval.m4,
m4/minloc0.m4, m4/minloc1.m4, m4/minval.m4, m4/reshape.m4,
m4/shape.m4, m4/specific.m4, m4/specific2.m4, m4/transpose.m4):
Update to use new iparm.m4.
* generated/*.c: Regenerate.
From-SVN: r82003
Diffstat (limited to 'libgfortran/m4/iforeach.m4')
-rw-r--r-- | libgfortran/m4/iforeach.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgfortran/m4/iforeach.m4 b/libgfortran/m4/iforeach.m4 index 2397036ba72..4106ddc7aaf 100644 --- a/libgfortran/m4/iforeach.m4 +++ b/libgfortran/m4/iforeach.m4 @@ -4,13 +4,13 @@ dnl This file is part of the GNU Fortran 95 Runtime Library (libgfortran) dnl Distributed under the GNU LGPL. See COPYING for details. define(START_FOREACH_FUNCTION, `void -`__'name`'rtype_qual`_'type_code (rtype * retarray, atype *array) +`__'name`'rtype_qual`_'atype_code (rtype * retarray, atype *array) { index_type count[GFC_MAX_DIMENSIONS]; index_type extent[GFC_MAX_DIMENSIONS]; index_type sstride[GFC_MAX_DIMENSIONS]; index_type dstride; - type_name *base; + atype_name *base; rtype_name *dest; index_type rank; index_type n; @@ -86,7 +86,7 @@ define(FINISH_FOREACH_FUNCTION, }')dnl define(START_MASKED_FOREACH_FUNCTION, `void -`__m'name`'rtype_qual`_'type_code (rtype * retarray, atype *array, gfc_array_l4 * mask) +`__m'name`'rtype_qual`_'atype_code (rtype * retarray, atype *array, gfc_array_l4 * mask) { index_type count[GFC_MAX_DIMENSIONS]; index_type extent[GFC_MAX_DIMENSIONS]; @@ -94,7 +94,7 @@ define(START_MASKED_FOREACH_FUNCTION, index_type mstride[GFC_MAX_DIMENSIONS]; index_type dstride; rtype_name *dest; - type_name *base; + atype_name *base; GFC_LOGICAL_4 *mbase; int rank; index_type n; |