diff options
author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-18 19:03:26 +0000 |
---|---|---|
committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-18 19:03:26 +0000 |
commit | cdafa1f61b036a6e3fa3904da1307a8811665f38 (patch) | |
tree | 569bf2d4b68fde558de654650a2688d76b403819 /libgfortran/m4/maxloc1.m4 | |
parent | 4ab8a95bc578ef3c0e732ae1f25bac63ff7652f7 (diff) | |
download | gcc-cdafa1f61b036a6e3fa3904da1307a8811665f38.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82003 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/m4/maxloc1.m4')
-rw-r--r-- | libgfortran/m4/maxloc1.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgfortran/m4/maxloc1.m4 b/libgfortran/m4/maxloc1.m4 index 0eb259f9c6d..550a1f74c2f 100644 --- a/libgfortran/m4/maxloc1.m4 +++ b/libgfortran/m4/maxloc1.m4 @@ -29,8 +29,8 @@ Boston, MA 02111-1307, USA. */ include(iparm.m4)dnl include(ifunction.m4)dnl ARRAY_FUNCTION(0, -` type_name maxval; - maxval = type_min; +` atype_name maxval; + maxval = atype_min; result = 1;', ` if (*src > maxval) { @@ -39,8 +39,8 @@ ARRAY_FUNCTION(0, }') MASKED_ARRAY_FUNCTION(0, -` type_name maxval; - maxval = type_min; +` atype_name maxval; + maxval = atype_min; result = 1;', ` if (*msrc && *src > maxval) { |