]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Implement SUM and PRODUCT for unsigned.
authorThomas Koenig <tkoenig@gcc.gnu.org>
Tue, 24 Sep 2024 19:59:10 +0000 (21:59 +0200)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Tue, 24 Sep 2024 19:59:10 +0000 (21:59 +0200)
gcc/fortran/ChangeLog:

* gfortran.texi: Document SUM and PRODUCT.
* iresolve.cc (resolve_transformational): New argument,
use_integer, to translate calls to unsigned to calls to
integer.
(gfc_resolve_product): Use it
(gfc_resolve_sum): Use it.
* simplify.cc (init_result_expr): Handle BT_UNSIGNED.

libgfortran/ChangeLog:

* generated/product_c10.c: Regenerated.
* generated/product_c16.c: Regenerated.
* generated/product_c17.c: Regenerated.
* generated/product_c4.c: Regenerated.
* generated/product_c8.c: Regenerated.
* generated/product_i1.c: Regenerated.
* generated/product_i16.c: Regenerated.
* generated/product_i2.c: Regenerated.
* generated/product_i4.c: Regenerated.
* generated/product_i8.c: Regenarated.
* generated/product_r10.c: Regenerated.
* generated/product_r16.c: Regenerated.
* generated/product_r17.c: Regenerated.
* generated/product_r4.c: Regenerated.
* generated/product_r8.c: Regenarated.
* generated/sum_c10.c: Regenerated.
* generated/sum_c16.c: Regenerated.
* generated/sum_c17.c: Regenerated.
* generated/sum_c4.c: Regenerated.
* generated/sum_c8.c: Regenerated.
* generated/sum_i1.c: Regenerated.
* generated/sum_i16.c: Regenerated.
* generated/sum_i2.c: Regenerated.
* generated/sum_i4.c: Regenerated.
* generated/sum_i8.c: Regenerated.
* generated/sum_r10.c: Regenerated.
* generated/sum_r16.c: Regenerated.
* generated/sum_r17.c: Regenerated.
* generated/sum_r4.c: Regenerated.
* generated/sum_r8.c: Regenerated.
* m4/ifunction.m4: Whitespace fix.
* m4/product.m4: If type is integer, change to unsigned.
* m4/sum.m4: Likewise.

36 files changed:
gcc/fortran/gfortran.texi
gcc/fortran/iresolve.cc
gcc/fortran/simplify.cc
libgfortran/generated/product_c10.c
libgfortran/generated/product_c16.c
libgfortran/generated/product_c17.c
libgfortran/generated/product_c4.c
libgfortran/generated/product_c8.c
libgfortran/generated/product_i1.c
libgfortran/generated/product_i16.c
libgfortran/generated/product_i2.c
libgfortran/generated/product_i4.c
libgfortran/generated/product_i8.c
libgfortran/generated/product_r10.c
libgfortran/generated/product_r16.c
libgfortran/generated/product_r17.c
libgfortran/generated/product_r4.c
libgfortran/generated/product_r8.c
libgfortran/generated/sum_c10.c
libgfortran/generated/sum_c16.c
libgfortran/generated/sum_c17.c
libgfortran/generated/sum_c4.c
libgfortran/generated/sum_c8.c
libgfortran/generated/sum_i1.c
libgfortran/generated/sum_i16.c
libgfortran/generated/sum_i2.c
libgfortran/generated/sum_i4.c
libgfortran/generated/sum_i8.c
libgfortran/generated/sum_r10.c
libgfortran/generated/sum_r16.c
libgfortran/generated/sum_r17.c
libgfortran/generated/sum_r4.c
libgfortran/generated/sum_r8.c
libgfortran/m4/ifunction.m4
libgfortran/m4/product.m4
libgfortran/m4/sum.m4

index 829ab00c66533f8d3bb09a3eedf154598d77cdec..e5ffe67eeee87e90aff123ff41e246c0cb4c0c10 100644 (file)
@@ -2788,7 +2788,7 @@ As of now, the following intrinsics take unsigned arguments:
 @item @code{MVBITS}
 @item @code{RANGE}
 @item @code{TRANSFER}
-@item @code{MATMUL} and @code{DOT_PRODUCT}
+@item @code{SUM}, @code{PRODUCT}, @code{MATMUL} and @code{DOT_PRODUCT}
 @end itemize
 This list will grow in the near future.
 @c ---------------------------------------------------------------------
index 32b31432e58bdb52bd3fc4f325acbf8662c8c70b..b4c9a636260e0b20fb1061481fe74980b491344c 100644 (file)
@@ -175,9 +175,11 @@ resolve_bound (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *kind,
 
 static void
 resolve_transformational (const char *name, gfc_expr *f, gfc_expr *array,
-                         gfc_expr *dim, gfc_expr *mask)
+                         gfc_expr *dim, gfc_expr *mask,
+                         bool use_integer = false)
 {
   const char *prefix;
+  bt type;
 
   f->ts = array->ts;
 
@@ -200,9 +202,18 @@ resolve_transformational (const char *name, gfc_expr *f, gfc_expr *array,
       gfc_resolve_dim_arg (dim);
     }
 
+  /* For those intrinsic like SUM where we use the integer version
+     actually uses unsigned, but we call it as the integer
+     version.  */
+
+  if (use_integer && array->ts.type == BT_UNSIGNED)
+    type = BT_INTEGER;
+  else
+    type = array->ts.type;
+
   f->value.function.name
     = gfc_get_string (PREFIX ("%s%s_%c%d"), prefix, name,
-                     gfc_type_letter (array->ts.type),
+                     gfc_type_letter (type),
                      gfc_type_abi_kind (&array->ts));
 }
 
@@ -2333,7 +2344,7 @@ void
 gfc_resolve_product (gfc_expr *f, gfc_expr *array, gfc_expr *dim,
                     gfc_expr *mask)
 {
-  resolve_transformational ("product", f, array, dim, mask);
+  resolve_transformational ("product", f, array, dim, mask, true);
 }
 
 
@@ -2881,7 +2892,7 @@ gfc_resolve_storage_size (gfc_expr *f, gfc_expr *a ATTRIBUTE_UNUSED,
 void
 gfc_resolve_sum (gfc_expr *f, gfc_expr *array, gfc_expr *dim, gfc_expr *mask)
 {
-  resolve_transformational ("sum", f, array, dim, mask);
+  resolve_transformational ("sum", f, array, dim, mask, true);
 }
 
 
index 83d0fdc9ea931d1a01da93868999ff68a2cf0b3a..e5681c42a48c5475689baae079d6d43ad97f27a5 100644 (file)
@@ -359,7 +359,16 @@ init_result_expr (gfc_expr *e, int init, gfc_expr *array)
              mpz_set_si (e->value.integer, init);
            break;
 
-         case BT_REAL:
+         case BT_UNSIGNED:
+           if (init == INT_MIN)
+             mpz_set_ui (e->value.integer, 0);
+           else if (init == INT_MAX)
+             mpz_set (e->value.integer, gfc_unsigned_kinds[i].huge);
+           else
+             mpz_set_ui (e->value.integer, init);
+           break;
+
+       case BT_REAL:
            if (init == INT_MIN)
              {
                mpfr_set (e->value.real, gfc_real_kinds[i].huge, GFC_RND_MODE);
index 9438f5d73162c9d0dff255f6f623246ce76d5410..c57f1642b6580843154ea181c753ec0b6528107d 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_10) && defined (HAVE_GFC_COMPLEX_10)
 
 
-extern void product_c10 (gfc_array_c10 * const restrict, 
+extern void product_c10 (gfc_array_c10 * const restrict,
        gfc_array_c10 * const restrict, const index_type * const restrict);
 export_proto(product_c10);
 
 void
-product_c10 (gfc_array_c10 * const restrict retarray, 
-       gfc_array_c10 * const restrict array, 
+product_c10 (gfc_array_c10 * const restrict retarray,
+       gfc_array_c10 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_c10 (gfc_array_c10 * const restrict retarray,
 }
 
 
-extern void mproduct_c10 (gfc_array_c10 * const restrict, 
+extern void mproduct_c10 (gfc_array_c10 * const restrict,
        gfc_array_c10 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_c10);
 
 void
-mproduct_c10 (gfc_array_c10 * const restrict retarray, 
-       gfc_array_c10 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_c10 (gfc_array_c10 * const restrict retarray,
+       gfc_array_c10 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_c10 (gfc_array_c10 * const restrict retarray,
 }
 
 
-extern void sproduct_c10 (gfc_array_c10 * const restrict, 
+extern void sproduct_c10 (gfc_array_c10 * const restrict,
        gfc_array_c10 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_c10);
 
 void
-sproduct_c10 (gfc_array_c10 * const restrict retarray, 
-       gfc_array_c10 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_c10 (gfc_array_c10 * const restrict retarray,
+       gfc_array_c10 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index c654032b0d0f45fbcf521d41125ca988c5eef4f3..9c5a231261bf663cf8d450ad973655516ad65aaa 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_16) && defined (HAVE_GFC_COMPLEX_16)
 
 
-extern void product_c16 (gfc_array_c16 * const restrict, 
+extern void product_c16 (gfc_array_c16 * const restrict,
        gfc_array_c16 * const restrict, const index_type * const restrict);
 export_proto(product_c16);
 
 void
-product_c16 (gfc_array_c16 * const restrict retarray, 
-       gfc_array_c16 * const restrict array, 
+product_c16 (gfc_array_c16 * const restrict retarray,
+       gfc_array_c16 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_c16 (gfc_array_c16 * const restrict retarray,
 }
 
 
-extern void mproduct_c16 (gfc_array_c16 * const restrict, 
+extern void mproduct_c16 (gfc_array_c16 * const restrict,
        gfc_array_c16 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_c16);
 
 void
-mproduct_c16 (gfc_array_c16 * const restrict retarray, 
-       gfc_array_c16 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_c16 (gfc_array_c16 * const restrict retarray,
+       gfc_array_c16 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_c16 (gfc_array_c16 * const restrict retarray,
 }
 
 
-extern void sproduct_c16 (gfc_array_c16 * const restrict, 
+extern void sproduct_c16 (gfc_array_c16 * const restrict,
        gfc_array_c16 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_c16);
 
 void
-sproduct_c16 (gfc_array_c16 * const restrict retarray, 
-       gfc_array_c16 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_c16 (gfc_array_c16 * const restrict retarray,
+       gfc_array_c16 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 45b5f1861044fa97364a44a072697ee68198deca..cfc2d6c2def193108f1e7754eab65c555aa4fd29 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_17) && defined (HAVE_GFC_COMPLEX_17)
 
 
-extern void product_c17 (gfc_array_c17 * const restrict, 
+extern void product_c17 (gfc_array_c17 * const restrict,
        gfc_array_c17 * const restrict, const index_type * const restrict);
 export_proto(product_c17);
 
 void
-product_c17 (gfc_array_c17 * const restrict retarray, 
-       gfc_array_c17 * const restrict array, 
+product_c17 (gfc_array_c17 * const restrict retarray,
+       gfc_array_c17 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_c17 (gfc_array_c17 * const restrict retarray,
 }
 
 
-extern void mproduct_c17 (gfc_array_c17 * const restrict, 
+extern void mproduct_c17 (gfc_array_c17 * const restrict,
        gfc_array_c17 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_c17);
 
 void
-mproduct_c17 (gfc_array_c17 * const restrict retarray, 
-       gfc_array_c17 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_c17 (gfc_array_c17 * const restrict retarray,
+       gfc_array_c17 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_c17 (gfc_array_c17 * const restrict retarray,
 }
 
 
-extern void sproduct_c17 (gfc_array_c17 * const restrict, 
+extern void sproduct_c17 (gfc_array_c17 * const restrict,
        gfc_array_c17 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_c17);
 
 void
-sproduct_c17 (gfc_array_c17 * const restrict retarray, 
-       gfc_array_c17 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_c17 (gfc_array_c17 * const restrict retarray,
+       gfc_array_c17 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index baa3a9ae4f340463b8195f2b8fdc22f1dce89312..517778e739d630309a373c79769845a21b34d97f 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_4) && defined (HAVE_GFC_COMPLEX_4)
 
 
-extern void product_c4 (gfc_array_c4 * const restrict, 
+extern void product_c4 (gfc_array_c4 * const restrict,
        gfc_array_c4 * const restrict, const index_type * const restrict);
 export_proto(product_c4);
 
 void
-product_c4 (gfc_array_c4 * const restrict retarray, 
-       gfc_array_c4 * const restrict array, 
+product_c4 (gfc_array_c4 * const restrict retarray,
+       gfc_array_c4 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_c4 (gfc_array_c4 * const restrict retarray,
 }
 
 
-extern void mproduct_c4 (gfc_array_c4 * const restrict, 
+extern void mproduct_c4 (gfc_array_c4 * const restrict,
        gfc_array_c4 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_c4);
 
 void
-mproduct_c4 (gfc_array_c4 * const restrict retarray, 
-       gfc_array_c4 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_c4 (gfc_array_c4 * const restrict retarray,
+       gfc_array_c4 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_c4 (gfc_array_c4 * const restrict retarray,
 }
 
 
-extern void sproduct_c4 (gfc_array_c4 * const restrict, 
+extern void sproduct_c4 (gfc_array_c4 * const restrict,
        gfc_array_c4 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_c4);
 
 void
-sproduct_c4 (gfc_array_c4 * const restrict retarray, 
-       gfc_array_c4 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_c4 (gfc_array_c4 * const restrict retarray,
+       gfc_array_c4 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 18016af1cb8f86cbf314a4c4ce69c9d069b2a983..1138d8a880e3dda94bdab36624dec6b3f0b8d316 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_8) && defined (HAVE_GFC_COMPLEX_8)
 
 
-extern void product_c8 (gfc_array_c8 * const restrict, 
+extern void product_c8 (gfc_array_c8 * const restrict,
        gfc_array_c8 * const restrict, const index_type * const restrict);
 export_proto(product_c8);
 
 void
-product_c8 (gfc_array_c8 * const restrict retarray, 
-       gfc_array_c8 * const restrict array, 
+product_c8 (gfc_array_c8 * const restrict retarray,
+       gfc_array_c8 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_c8 (gfc_array_c8 * const restrict retarray,
 }
 
 
-extern void mproduct_c8 (gfc_array_c8 * const restrict, 
+extern void mproduct_c8 (gfc_array_c8 * const restrict,
        gfc_array_c8 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_c8);
 
 void
-mproduct_c8 (gfc_array_c8 * const restrict retarray, 
-       gfc_array_c8 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_c8 (gfc_array_c8 * const restrict retarray,
+       gfc_array_c8 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_c8 (gfc_array_c8 * const restrict retarray,
 }
 
 
-extern void sproduct_c8 (gfc_array_c8 * const restrict, 
+extern void sproduct_c8 (gfc_array_c8 * const restrict,
        gfc_array_c8 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_c8);
 
 void
-sproduct_c8 (gfc_array_c8 * const restrict retarray, 
-       gfc_array_c8 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_c8 (gfc_array_c8 * const restrict retarray,
+       gfc_array_c8 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 1ffef4a501cad2853b18093917143252dbfe7284..fbcd76e734cc933bca49846021f43985ec8c035c 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_1) && defined (HAVE_GFC_INTEGER_1)
+#if defined (HAVE_GFC_UINTEGER_1) && defined (HAVE_GFC_UINTEGER_1)
 
 
-extern void product_i1 (gfc_array_i1 * const restrict, 
-       gfc_array_i1 * const restrict, const index_type * const restrict);
+extern void product_i1 (gfc_array_m1 * const restrict,
+       gfc_array_m1 * const restrict, const index_type * const restrict);
 export_proto(product_i1);
 
 void
-product_i1 (gfc_array_i1 * const restrict retarray, 
-       gfc_array_i1 * const restrict array, 
+product_i1 (gfc_array_m1 * const restrict retarray,
+       gfc_array_m1 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_1 * restrict base;
-  GFC_INTEGER_1 * restrict dest;
+  const GFC_UINTEGER_1 * restrict base;
+  GFC_UINTEGER_1 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ product_i1 (gfc_array_i1 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_1));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_1));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ product_i1 (gfc_array_i1 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_1 * restrict src;
-      GFC_INTEGER_1 result;
+      const GFC_UINTEGER_1 * restrict src;
+      GFC_UINTEGER_1 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ product_i1 (gfc_array_i1 * const restrict retarray,
 }
 
 
-extern void mproduct_i1 (gfc_array_i1 * const restrict, 
-       gfc_array_i1 * const restrict, const index_type * const restrict,
+extern void mproduct_i1 (gfc_array_m1 * const restrict,
+       gfc_array_m1 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_i1);
 
 void
-mproduct_i1 (gfc_array_i1 * const restrict retarray, 
-       gfc_array_i1 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_i1 (gfc_array_m1 * const restrict retarray,
+       gfc_array_m1 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ mproduct_i1 (gfc_array_i1 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_1 * restrict dest;
-  const GFC_INTEGER_1 * restrict base;
+  GFC_UINTEGER_1 * restrict dest;
+  const GFC_UINTEGER_1 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ mproduct_i1 (gfc_array_i1 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_1));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_1));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ mproduct_i1 (gfc_array_i1 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_1 * restrict src;
+      const GFC_UINTEGER_1 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_1 result;
+      GFC_UINTEGER_1 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ mproduct_i1 (gfc_array_i1 * const restrict retarray,
 }
 
 
-extern void sproduct_i1 (gfc_array_i1 * const restrict, 
-       gfc_array_i1 * const restrict, const index_type * const restrict,
+extern void sproduct_i1 (gfc_array_m1 * const restrict,
+       gfc_array_m1 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_i1);
 
 void
-sproduct_i1 (gfc_array_i1 * const restrict retarray, 
-       gfc_array_i1 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_i1 (gfc_array_m1 * const restrict retarray,
+       gfc_array_m1 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_1 * restrict dest;
+  GFC_UINTEGER_1 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ sproduct_i1 (gfc_array_i1 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_1));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_1));
       if (alloc_size == 0)
        return;
     }
index 1bb2ace2c31dc4ece199df2d155654c9122c82fd..92baef5b16d3d922b8da5a773d4d7305aae99792 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_16)
+#if defined (HAVE_GFC_UINTEGER_16) && defined (HAVE_GFC_UINTEGER_16)
 
 
-extern void product_i16 (gfc_array_i16 * const restrict, 
-       gfc_array_i16 * const restrict, const index_type * const restrict);
+extern void product_i16 (gfc_array_m16 * const restrict,
+       gfc_array_m16 * const restrict, const index_type * const restrict);
 export_proto(product_i16);
 
 void
-product_i16 (gfc_array_i16 * const restrict retarray, 
-       gfc_array_i16 * const restrict array, 
+product_i16 (gfc_array_m16 * const restrict retarray,
+       gfc_array_m16 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_16 * restrict base;
-  GFC_INTEGER_16 * restrict dest;
+  const GFC_UINTEGER_16 * restrict base;
+  GFC_UINTEGER_16 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ product_i16 (gfc_array_i16 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_16));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_16));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ product_i16 (gfc_array_i16 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_16 * restrict src;
-      GFC_INTEGER_16 result;
+      const GFC_UINTEGER_16 * restrict src;
+      GFC_UINTEGER_16 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ product_i16 (gfc_array_i16 * const restrict retarray,
 }
 
 
-extern void mproduct_i16 (gfc_array_i16 * const restrict, 
-       gfc_array_i16 * const restrict, const index_type * const restrict,
+extern void mproduct_i16 (gfc_array_m16 * const restrict,
+       gfc_array_m16 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_i16);
 
 void
-mproduct_i16 (gfc_array_i16 * const restrict retarray, 
-       gfc_array_i16 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_i16 (gfc_array_m16 * const restrict retarray,
+       gfc_array_m16 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ mproduct_i16 (gfc_array_i16 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_16 * restrict dest;
-  const GFC_INTEGER_16 * restrict base;
+  GFC_UINTEGER_16 * restrict dest;
+  const GFC_UINTEGER_16 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ mproduct_i16 (gfc_array_i16 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_16));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_16));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ mproduct_i16 (gfc_array_i16 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_16 * restrict src;
+      const GFC_UINTEGER_16 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_16 result;
+      GFC_UINTEGER_16 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ mproduct_i16 (gfc_array_i16 * const restrict retarray,
 }
 
 
-extern void sproduct_i16 (gfc_array_i16 * const restrict, 
-       gfc_array_i16 * const restrict, const index_type * const restrict,
+extern void sproduct_i16 (gfc_array_m16 * const restrict,
+       gfc_array_m16 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_i16);
 
 void
-sproduct_i16 (gfc_array_i16 * const restrict retarray, 
-       gfc_array_i16 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_i16 (gfc_array_m16 * const restrict retarray,
+       gfc_array_m16 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_16 * restrict dest;
+  GFC_UINTEGER_16 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ sproduct_i16 (gfc_array_i16 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_16));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_16));
       if (alloc_size == 0)
        return;
     }
index b38cf458bf1819a04346ff62b2ad517032eb91c1..31a0dadba1f2ca654b1f1041626417d7c6089cfe 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_2) && defined (HAVE_GFC_INTEGER_2)
+#if defined (HAVE_GFC_UINTEGER_2) && defined (HAVE_GFC_UINTEGER_2)
 
 
-extern void product_i2 (gfc_array_i2 * const restrict, 
-       gfc_array_i2 * const restrict, const index_type * const restrict);
+extern void product_i2 (gfc_array_m2 * const restrict,
+       gfc_array_m2 * const restrict, const index_type * const restrict);
 export_proto(product_i2);
 
 void
-product_i2 (gfc_array_i2 * const restrict retarray, 
-       gfc_array_i2 * const restrict array, 
+product_i2 (gfc_array_m2 * const restrict retarray,
+       gfc_array_m2 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_2 * restrict base;
-  GFC_INTEGER_2 * restrict dest;
+  const GFC_UINTEGER_2 * restrict base;
+  GFC_UINTEGER_2 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ product_i2 (gfc_array_i2 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_2));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_2));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ product_i2 (gfc_array_i2 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_2 * restrict src;
-      GFC_INTEGER_2 result;
+      const GFC_UINTEGER_2 * restrict src;
+      GFC_UINTEGER_2 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ product_i2 (gfc_array_i2 * const restrict retarray,
 }
 
 
-extern void mproduct_i2 (gfc_array_i2 * const restrict, 
-       gfc_array_i2 * const restrict, const index_type * const restrict,
+extern void mproduct_i2 (gfc_array_m2 * const restrict,
+       gfc_array_m2 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_i2);
 
 void
-mproduct_i2 (gfc_array_i2 * const restrict retarray, 
-       gfc_array_i2 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_i2 (gfc_array_m2 * const restrict retarray,
+       gfc_array_m2 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ mproduct_i2 (gfc_array_i2 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_2 * restrict dest;
-  const GFC_INTEGER_2 * restrict base;
+  GFC_UINTEGER_2 * restrict dest;
+  const GFC_UINTEGER_2 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ mproduct_i2 (gfc_array_i2 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_2));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_2));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ mproduct_i2 (gfc_array_i2 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_2 * restrict src;
+      const GFC_UINTEGER_2 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_2 result;
+      GFC_UINTEGER_2 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ mproduct_i2 (gfc_array_i2 * const restrict retarray,
 }
 
 
-extern void sproduct_i2 (gfc_array_i2 * const restrict, 
-       gfc_array_i2 * const restrict, const index_type * const restrict,
+extern void sproduct_i2 (gfc_array_m2 * const restrict,
+       gfc_array_m2 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_i2);
 
 void
-sproduct_i2 (gfc_array_i2 * const restrict retarray, 
-       gfc_array_i2 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_i2 (gfc_array_m2 * const restrict retarray,
+       gfc_array_m2 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_2 * restrict dest;
+  GFC_UINTEGER_2 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ sproduct_i2 (gfc_array_i2 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_2));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_2));
       if (alloc_size == 0)
        return;
     }
index bc3df5eb530874ad0ed0f1cef28a7ebd346adfc2..420f76a1e649e5dcdb410168904a7bd7d6a21b26 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_4)
+#if defined (HAVE_GFC_UINTEGER_4) && defined (HAVE_GFC_UINTEGER_4)
 
 
-extern void product_i4 (gfc_array_i4 * const restrict, 
-       gfc_array_i4 * const restrict, const index_type * const restrict);
+extern void product_i4 (gfc_array_m4 * const restrict,
+       gfc_array_m4 * const restrict, const index_type * const restrict);
 export_proto(product_i4);
 
 void
-product_i4 (gfc_array_i4 * const restrict retarray, 
-       gfc_array_i4 * const restrict array, 
+product_i4 (gfc_array_m4 * const restrict retarray,
+       gfc_array_m4 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_4 * restrict base;
-  GFC_INTEGER_4 * restrict dest;
+  const GFC_UINTEGER_4 * restrict base;
+  GFC_UINTEGER_4 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ product_i4 (gfc_array_i4 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_4));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_4));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ product_i4 (gfc_array_i4 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_4 * restrict src;
-      GFC_INTEGER_4 result;
+      const GFC_UINTEGER_4 * restrict src;
+      GFC_UINTEGER_4 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ product_i4 (gfc_array_i4 * const restrict retarray,
 }
 
 
-extern void mproduct_i4 (gfc_array_i4 * const restrict, 
-       gfc_array_i4 * const restrict, const index_type * const restrict,
+extern void mproduct_i4 (gfc_array_m4 * const restrict,
+       gfc_array_m4 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_i4);
 
 void
-mproduct_i4 (gfc_array_i4 * const restrict retarray, 
-       gfc_array_i4 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_i4 (gfc_array_m4 * const restrict retarray,
+       gfc_array_m4 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ mproduct_i4 (gfc_array_i4 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_4 * restrict dest;
-  const GFC_INTEGER_4 * restrict base;
+  GFC_UINTEGER_4 * restrict dest;
+  const GFC_UINTEGER_4 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ mproduct_i4 (gfc_array_i4 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_4));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_4));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ mproduct_i4 (gfc_array_i4 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_4 * restrict src;
+      const GFC_UINTEGER_4 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_4 result;
+      GFC_UINTEGER_4 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ mproduct_i4 (gfc_array_i4 * const restrict retarray,
 }
 
 
-extern void sproduct_i4 (gfc_array_i4 * const restrict, 
-       gfc_array_i4 * const restrict, const index_type * const restrict,
+extern void sproduct_i4 (gfc_array_m4 * const restrict,
+       gfc_array_m4 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_i4);
 
 void
-sproduct_i4 (gfc_array_i4 * const restrict retarray, 
-       gfc_array_i4 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_i4 (gfc_array_m4 * const restrict retarray,
+       gfc_array_m4 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_4 * restrict dest;
+  GFC_UINTEGER_4 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ sproduct_i4 (gfc_array_i4 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_4));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_4));
       if (alloc_size == 0)
        return;
     }
index 9ef4c7c3011a7217983cad940ce23f1cfa6d17e6..46ab6b6cd70a5f0d8eebc7d161fc2428d9da5754 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_8)
+#if defined (HAVE_GFC_UINTEGER_8) && defined (HAVE_GFC_UINTEGER_8)
 
 
-extern void product_i8 (gfc_array_i8 * const restrict, 
-       gfc_array_i8 * const restrict, const index_type * const restrict);
+extern void product_i8 (gfc_array_m8 * const restrict,
+       gfc_array_m8 * const restrict, const index_type * const restrict);
 export_proto(product_i8);
 
 void
-product_i8 (gfc_array_i8 * const restrict retarray, 
-       gfc_array_i8 * const restrict array, 
+product_i8 (gfc_array_m8 * const restrict retarray,
+       gfc_array_m8 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_8 * restrict base;
-  GFC_INTEGER_8 * restrict dest;
+  const GFC_UINTEGER_8 * restrict base;
+  GFC_UINTEGER_8 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ product_i8 (gfc_array_i8 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_8));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_8));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ product_i8 (gfc_array_i8 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_8 * restrict src;
-      GFC_INTEGER_8 result;
+      const GFC_UINTEGER_8 * restrict src;
+      GFC_UINTEGER_8 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ product_i8 (gfc_array_i8 * const restrict retarray,
 }
 
 
-extern void mproduct_i8 (gfc_array_i8 * const restrict, 
-       gfc_array_i8 * const restrict, const index_type * const restrict,
+extern void mproduct_i8 (gfc_array_m8 * const restrict,
+       gfc_array_m8 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_i8);
 
 void
-mproduct_i8 (gfc_array_i8 * const restrict retarray, 
-       gfc_array_i8 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_i8 (gfc_array_m8 * const restrict retarray,
+       gfc_array_m8 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ mproduct_i8 (gfc_array_i8 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_8 * restrict dest;
-  const GFC_INTEGER_8 * restrict base;
+  GFC_UINTEGER_8 * restrict dest;
+  const GFC_UINTEGER_8 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ mproduct_i8 (gfc_array_i8 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_8));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_8));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ mproduct_i8 (gfc_array_i8 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_8 * restrict src;
+      const GFC_UINTEGER_8 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_8 result;
+      GFC_UINTEGER_8 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ mproduct_i8 (gfc_array_i8 * const restrict retarray,
 }
 
 
-extern void sproduct_i8 (gfc_array_i8 * const restrict, 
-       gfc_array_i8 * const restrict, const index_type * const restrict,
+extern void sproduct_i8 (gfc_array_m8 * const restrict,
+       gfc_array_m8 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_i8);
 
 void
-sproduct_i8 (gfc_array_i8 * const restrict retarray, 
-       gfc_array_i8 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_i8 (gfc_array_m8 * const restrict retarray,
+       gfc_array_m8 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_8 * restrict dest;
+  GFC_UINTEGER_8 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ sproduct_i8 (gfc_array_i8 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_8));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_8));
       if (alloc_size == 0)
        return;
     }
index d6103b4a6875f5e9d0b3e700c672f7842d74f145..2f4952de498b9db4cefecbc97af0e8b572c8b0a0 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_10) && defined (HAVE_GFC_REAL_10)
 
 
-extern void product_r10 (gfc_array_r10 * const restrict, 
+extern void product_r10 (gfc_array_r10 * const restrict,
        gfc_array_r10 * const restrict, const index_type * const restrict);
 export_proto(product_r10);
 
 void
-product_r10 (gfc_array_r10 * const restrict retarray, 
-       gfc_array_r10 * const restrict array, 
+product_r10 (gfc_array_r10 * const restrict retarray,
+       gfc_array_r10 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_r10 (gfc_array_r10 * const restrict retarray,
 }
 
 
-extern void mproduct_r10 (gfc_array_r10 * const restrict, 
+extern void mproduct_r10 (gfc_array_r10 * const restrict,
        gfc_array_r10 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_r10);
 
 void
-mproduct_r10 (gfc_array_r10 * const restrict retarray, 
-       gfc_array_r10 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_r10 (gfc_array_r10 * const restrict retarray,
+       gfc_array_r10 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_r10 (gfc_array_r10 * const restrict retarray,
 }
 
 
-extern void sproduct_r10 (gfc_array_r10 * const restrict, 
+extern void sproduct_r10 (gfc_array_r10 * const restrict,
        gfc_array_r10 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_r10);
 
 void
-sproduct_r10 (gfc_array_r10 * const restrict retarray, 
-       gfc_array_r10 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_r10 (gfc_array_r10 * const restrict retarray,
+       gfc_array_r10 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index d47a7b6b668380cca5ebcce0a40e8cc04dd20d01..05dc55058d7b53445c9c696a681fd67b159ef179 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_16) && defined (HAVE_GFC_REAL_16)
 
 
-extern void product_r16 (gfc_array_r16 * const restrict, 
+extern void product_r16 (gfc_array_r16 * const restrict,
        gfc_array_r16 * const restrict, const index_type * const restrict);
 export_proto(product_r16);
 
 void
-product_r16 (gfc_array_r16 * const restrict retarray, 
-       gfc_array_r16 * const restrict array, 
+product_r16 (gfc_array_r16 * const restrict retarray,
+       gfc_array_r16 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_r16 (gfc_array_r16 * const restrict retarray,
 }
 
 
-extern void mproduct_r16 (gfc_array_r16 * const restrict, 
+extern void mproduct_r16 (gfc_array_r16 * const restrict,
        gfc_array_r16 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_r16);
 
 void
-mproduct_r16 (gfc_array_r16 * const restrict retarray, 
-       gfc_array_r16 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_r16 (gfc_array_r16 * const restrict retarray,
+       gfc_array_r16 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_r16 (gfc_array_r16 * const restrict retarray,
 }
 
 
-extern void sproduct_r16 (gfc_array_r16 * const restrict, 
+extern void sproduct_r16 (gfc_array_r16 * const restrict,
        gfc_array_r16 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_r16);
 
 void
-sproduct_r16 (gfc_array_r16 * const restrict retarray, 
-       gfc_array_r16 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_r16 (gfc_array_r16 * const restrict retarray,
+       gfc_array_r16 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 614063fdc9c9a3bac458c400ff54b91f13e5cb9c..d19ec8dcccb5c353cef7c94aa641832ac2decf4b 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_17) && defined (HAVE_GFC_REAL_17)
 
 
-extern void product_r17 (gfc_array_r17 * const restrict, 
+extern void product_r17 (gfc_array_r17 * const restrict,
        gfc_array_r17 * const restrict, const index_type * const restrict);
 export_proto(product_r17);
 
 void
-product_r17 (gfc_array_r17 * const restrict retarray, 
-       gfc_array_r17 * const restrict array, 
+product_r17 (gfc_array_r17 * const restrict retarray,
+       gfc_array_r17 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_r17 (gfc_array_r17 * const restrict retarray,
 }
 
 
-extern void mproduct_r17 (gfc_array_r17 * const restrict, 
+extern void mproduct_r17 (gfc_array_r17 * const restrict,
        gfc_array_r17 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_r17);
 
 void
-mproduct_r17 (gfc_array_r17 * const restrict retarray, 
-       gfc_array_r17 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_r17 (gfc_array_r17 * const restrict retarray,
+       gfc_array_r17 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_r17 (gfc_array_r17 * const restrict retarray,
 }
 
 
-extern void sproduct_r17 (gfc_array_r17 * const restrict, 
+extern void sproduct_r17 (gfc_array_r17 * const restrict,
        gfc_array_r17 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_r17);
 
 void
-sproduct_r17 (gfc_array_r17 * const restrict retarray, 
-       gfc_array_r17 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_r17 (gfc_array_r17 * const restrict retarray,
+       gfc_array_r17 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 807e783c43a58e26947981334b12cfd5fd54c4d4..95bf1ca17cbf156b546e3c8c4e0330b04900493b 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_4) && defined (HAVE_GFC_REAL_4)
 
 
-extern void product_r4 (gfc_array_r4 * const restrict, 
+extern void product_r4 (gfc_array_r4 * const restrict,
        gfc_array_r4 * const restrict, const index_type * const restrict);
 export_proto(product_r4);
 
 void
-product_r4 (gfc_array_r4 * const restrict retarray, 
-       gfc_array_r4 * const restrict array, 
+product_r4 (gfc_array_r4 * const restrict retarray,
+       gfc_array_r4 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_r4 (gfc_array_r4 * const restrict retarray,
 }
 
 
-extern void mproduct_r4 (gfc_array_r4 * const restrict, 
+extern void mproduct_r4 (gfc_array_r4 * const restrict,
        gfc_array_r4 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_r4);
 
 void
-mproduct_r4 (gfc_array_r4 * const restrict retarray, 
-       gfc_array_r4 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_r4 (gfc_array_r4 * const restrict retarray,
+       gfc_array_r4 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_r4 (gfc_array_r4 * const restrict retarray,
 }
 
 
-extern void sproduct_r4 (gfc_array_r4 * const restrict, 
+extern void sproduct_r4 (gfc_array_r4 * const restrict,
        gfc_array_r4 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_r4);
 
 void
-sproduct_r4 (gfc_array_r4 * const restrict retarray, 
-       gfc_array_r4 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_r4 (gfc_array_r4 * const restrict retarray,
+       gfc_array_r4 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index c5ab63d51ff80a71947b54acd90a914a920041b2..95423cba67b889e72c8ae69f991c37fd3c42a4ad 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_8) && defined (HAVE_GFC_REAL_8)
 
 
-extern void product_r8 (gfc_array_r8 * const restrict, 
+extern void product_r8 (gfc_array_r8 * const restrict,
        gfc_array_r8 * const restrict, const index_type * const restrict);
 export_proto(product_r8);
 
 void
-product_r8 (gfc_array_r8 * const restrict retarray, 
-       gfc_array_r8 * const restrict array, 
+product_r8 (gfc_array_r8 * const restrict retarray,
+       gfc_array_r8 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ product_r8 (gfc_array_r8 * const restrict retarray,
 }
 
 
-extern void mproduct_r8 (gfc_array_r8 * const restrict, 
+extern void mproduct_r8 (gfc_array_r8 * const restrict,
        gfc_array_r8 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(mproduct_r8);
 
 void
-mproduct_r8 (gfc_array_r8 * const restrict retarray, 
-       gfc_array_r8 * const restrict array, 
-       const index_type * const restrict pdim, 
+mproduct_r8 (gfc_array_r8 * const restrict retarray,
+       gfc_array_r8 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ mproduct_r8 (gfc_array_r8 * const restrict retarray,
 }
 
 
-extern void sproduct_r8 (gfc_array_r8 * const restrict, 
+extern void sproduct_r8 (gfc_array_r8 * const restrict,
        gfc_array_r8 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(sproduct_r8);
 
 void
-sproduct_r8 (gfc_array_r8 * const restrict retarray, 
-       gfc_array_r8 * const restrict array, 
-       const index_type * const restrict pdim, 
+sproduct_r8 (gfc_array_r8 * const restrict retarray,
+       gfc_array_r8 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index a5f5dcf9dc9cd2582b5cb23caa75f95bcae3730e..0e2195f3175f2e722b574c93135e2d13e3152ed7 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_10) && defined (HAVE_GFC_COMPLEX_10)
 
 
-extern void sum_c10 (gfc_array_c10 * const restrict, 
+extern void sum_c10 (gfc_array_c10 * const restrict,
        gfc_array_c10 * const restrict, const index_type * const restrict);
 export_proto(sum_c10);
 
 void
-sum_c10 (gfc_array_c10 * const restrict retarray, 
-       gfc_array_c10 * const restrict array, 
+sum_c10 (gfc_array_c10 * const restrict retarray,
+       gfc_array_c10 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_c10 (gfc_array_c10 * const restrict retarray,
 }
 
 
-extern void msum_c10 (gfc_array_c10 * const restrict, 
+extern void msum_c10 (gfc_array_c10 * const restrict,
        gfc_array_c10 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_c10);
 
 void
-msum_c10 (gfc_array_c10 * const restrict retarray, 
-       gfc_array_c10 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_c10 (gfc_array_c10 * const restrict retarray,
+       gfc_array_c10 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_c10 (gfc_array_c10 * const restrict retarray,
 }
 
 
-extern void ssum_c10 (gfc_array_c10 * const restrict, 
+extern void ssum_c10 (gfc_array_c10 * const restrict,
        gfc_array_c10 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_c10);
 
 void
-ssum_c10 (gfc_array_c10 * const restrict retarray, 
-       gfc_array_c10 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_c10 (gfc_array_c10 * const restrict retarray,
+       gfc_array_c10 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 81193fb6c449428a293b21033d99113033d46706..96c1ebbeb0424de5f5982d31f04cd01981677c32 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_16) && defined (HAVE_GFC_COMPLEX_16)
 
 
-extern void sum_c16 (gfc_array_c16 * const restrict, 
+extern void sum_c16 (gfc_array_c16 * const restrict,
        gfc_array_c16 * const restrict, const index_type * const restrict);
 export_proto(sum_c16);
 
 void
-sum_c16 (gfc_array_c16 * const restrict retarray, 
-       gfc_array_c16 * const restrict array, 
+sum_c16 (gfc_array_c16 * const restrict retarray,
+       gfc_array_c16 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_c16 (gfc_array_c16 * const restrict retarray,
 }
 
 
-extern void msum_c16 (gfc_array_c16 * const restrict, 
+extern void msum_c16 (gfc_array_c16 * const restrict,
        gfc_array_c16 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_c16);
 
 void
-msum_c16 (gfc_array_c16 * const restrict retarray, 
-       gfc_array_c16 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_c16 (gfc_array_c16 * const restrict retarray,
+       gfc_array_c16 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_c16 (gfc_array_c16 * const restrict retarray,
 }
 
 
-extern void ssum_c16 (gfc_array_c16 * const restrict, 
+extern void ssum_c16 (gfc_array_c16 * const restrict,
        gfc_array_c16 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_c16);
 
 void
-ssum_c16 (gfc_array_c16 * const restrict retarray, 
-       gfc_array_c16 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_c16 (gfc_array_c16 * const restrict retarray,
+       gfc_array_c16 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index e1c3bbe1a9528e755c238337a19e8bfb2820eb7e..56df816439dee13d8f5b330003b54217e9bb6d57 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_17) && defined (HAVE_GFC_COMPLEX_17)
 
 
-extern void sum_c17 (gfc_array_c17 * const restrict, 
+extern void sum_c17 (gfc_array_c17 * const restrict,
        gfc_array_c17 * const restrict, const index_type * const restrict);
 export_proto(sum_c17);
 
 void
-sum_c17 (gfc_array_c17 * const restrict retarray, 
-       gfc_array_c17 * const restrict array, 
+sum_c17 (gfc_array_c17 * const restrict retarray,
+       gfc_array_c17 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_c17 (gfc_array_c17 * const restrict retarray,
 }
 
 
-extern void msum_c17 (gfc_array_c17 * const restrict, 
+extern void msum_c17 (gfc_array_c17 * const restrict,
        gfc_array_c17 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_c17);
 
 void
-msum_c17 (gfc_array_c17 * const restrict retarray, 
-       gfc_array_c17 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_c17 (gfc_array_c17 * const restrict retarray,
+       gfc_array_c17 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_c17 (gfc_array_c17 * const restrict retarray,
 }
 
 
-extern void ssum_c17 (gfc_array_c17 * const restrict, 
+extern void ssum_c17 (gfc_array_c17 * const restrict,
        gfc_array_c17 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_c17);
 
 void
-ssum_c17 (gfc_array_c17 * const restrict retarray, 
-       gfc_array_c17 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_c17 (gfc_array_c17 * const restrict retarray,
+       gfc_array_c17 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 93fdc68d71588516f28ce2ff4928c4640e5d7d94..509f710c9a0668bcda939153fe2bfa08002e4b78 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_4) && defined (HAVE_GFC_COMPLEX_4)
 
 
-extern void sum_c4 (gfc_array_c4 * const restrict, 
+extern void sum_c4 (gfc_array_c4 * const restrict,
        gfc_array_c4 * const restrict, const index_type * const restrict);
 export_proto(sum_c4);
 
 void
-sum_c4 (gfc_array_c4 * const restrict retarray, 
-       gfc_array_c4 * const restrict array, 
+sum_c4 (gfc_array_c4 * const restrict retarray,
+       gfc_array_c4 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_c4 (gfc_array_c4 * const restrict retarray,
 }
 
 
-extern void msum_c4 (gfc_array_c4 * const restrict, 
+extern void msum_c4 (gfc_array_c4 * const restrict,
        gfc_array_c4 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_c4);
 
 void
-msum_c4 (gfc_array_c4 * const restrict retarray, 
-       gfc_array_c4 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_c4 (gfc_array_c4 * const restrict retarray,
+       gfc_array_c4 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_c4 (gfc_array_c4 * const restrict retarray,
 }
 
 
-extern void ssum_c4 (gfc_array_c4 * const restrict, 
+extern void ssum_c4 (gfc_array_c4 * const restrict,
        gfc_array_c4 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_c4);
 
 void
-ssum_c4 (gfc_array_c4 * const restrict retarray, 
-       gfc_array_c4 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_c4 (gfc_array_c4 * const restrict retarray,
+       gfc_array_c4 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index d070f986c84cc70beac9218067ae0cbf1d943eb2..c19d1d41a3fa41764053aa3153d201cc19b931f1 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_COMPLEX_8) && defined (HAVE_GFC_COMPLEX_8)
 
 
-extern void sum_c8 (gfc_array_c8 * const restrict, 
+extern void sum_c8 (gfc_array_c8 * const restrict,
        gfc_array_c8 * const restrict, const index_type * const restrict);
 export_proto(sum_c8);
 
 void
-sum_c8 (gfc_array_c8 * const restrict retarray, 
-       gfc_array_c8 * const restrict array, 
+sum_c8 (gfc_array_c8 * const restrict retarray,
+       gfc_array_c8 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_c8 (gfc_array_c8 * const restrict retarray,
 }
 
 
-extern void msum_c8 (gfc_array_c8 * const restrict, 
+extern void msum_c8 (gfc_array_c8 * const restrict,
        gfc_array_c8 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_c8);
 
 void
-msum_c8 (gfc_array_c8 * const restrict retarray, 
-       gfc_array_c8 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_c8 (gfc_array_c8 * const restrict retarray,
+       gfc_array_c8 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_c8 (gfc_array_c8 * const restrict retarray,
 }
 
 
-extern void ssum_c8 (gfc_array_c8 * const restrict, 
+extern void ssum_c8 (gfc_array_c8 * const restrict,
        gfc_array_c8 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_c8);
 
 void
-ssum_c8 (gfc_array_c8 * const restrict retarray, 
-       gfc_array_c8 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_c8 (gfc_array_c8 * const restrict retarray,
+       gfc_array_c8 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index fc1478ad03378a2b48e787b5f887bd7df1a75b00..b7b1762e01cb7213f5b2cf14202f575c45e78aa1 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_1) && defined (HAVE_GFC_INTEGER_1)
+#if defined (HAVE_GFC_UINTEGER_1) && defined (HAVE_GFC_UINTEGER_1)
 
 
-extern void sum_i1 (gfc_array_i1 * const restrict, 
-       gfc_array_i1 * const restrict, const index_type * const restrict);
+extern void sum_i1 (gfc_array_m1 * const restrict,
+       gfc_array_m1 * const restrict, const index_type * const restrict);
 export_proto(sum_i1);
 
 void
-sum_i1 (gfc_array_i1 * const restrict retarray, 
-       gfc_array_i1 * const restrict array, 
+sum_i1 (gfc_array_m1 * const restrict retarray,
+       gfc_array_m1 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_1 * restrict base;
-  GFC_INTEGER_1 * restrict dest;
+  const GFC_UINTEGER_1 * restrict base;
+  GFC_UINTEGER_1 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ sum_i1 (gfc_array_i1 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_1));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_1));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ sum_i1 (gfc_array_i1 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_1 * restrict src;
-      GFC_INTEGER_1 result;
+      const GFC_UINTEGER_1 * restrict src;
+      GFC_UINTEGER_1 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ sum_i1 (gfc_array_i1 * const restrict retarray,
 }
 
 
-extern void msum_i1 (gfc_array_i1 * const restrict, 
-       gfc_array_i1 * const restrict, const index_type * const restrict,
+extern void msum_i1 (gfc_array_m1 * const restrict,
+       gfc_array_m1 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_i1);
 
 void
-msum_i1 (gfc_array_i1 * const restrict retarray, 
-       gfc_array_i1 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_i1 (gfc_array_m1 * const restrict retarray,
+       gfc_array_m1 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ msum_i1 (gfc_array_i1 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_1 * restrict dest;
-  const GFC_INTEGER_1 * restrict base;
+  GFC_UINTEGER_1 * restrict dest;
+  const GFC_UINTEGER_1 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ msum_i1 (gfc_array_i1 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_1));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_1));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ msum_i1 (gfc_array_i1 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_1 * restrict src;
+      const GFC_UINTEGER_1 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_1 result;
+      GFC_UINTEGER_1 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ msum_i1 (gfc_array_i1 * const restrict retarray,
 }
 
 
-extern void ssum_i1 (gfc_array_i1 * const restrict, 
-       gfc_array_i1 * const restrict, const index_type * const restrict,
+extern void ssum_i1 (gfc_array_m1 * const restrict,
+       gfc_array_m1 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_i1);
 
 void
-ssum_i1 (gfc_array_i1 * const restrict retarray, 
-       gfc_array_i1 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_i1 (gfc_array_m1 * const restrict retarray,
+       gfc_array_m1 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_1 * restrict dest;
+  GFC_UINTEGER_1 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ ssum_i1 (gfc_array_i1 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_1));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_1));
       if (alloc_size == 0)
        return;
     }
index be602895f2c04f35c660e05902d62f2dcb255369..900e8fb6e4bc9e7a8232b920aa91e7d502970936 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_16) && defined (HAVE_GFC_INTEGER_16)
+#if defined (HAVE_GFC_UINTEGER_16) && defined (HAVE_GFC_UINTEGER_16)
 
 
-extern void sum_i16 (gfc_array_i16 * const restrict, 
-       gfc_array_i16 * const restrict, const index_type * const restrict);
+extern void sum_i16 (gfc_array_m16 * const restrict,
+       gfc_array_m16 * const restrict, const index_type * const restrict);
 export_proto(sum_i16);
 
 void
-sum_i16 (gfc_array_i16 * const restrict retarray, 
-       gfc_array_i16 * const restrict array, 
+sum_i16 (gfc_array_m16 * const restrict retarray,
+       gfc_array_m16 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_16 * restrict base;
-  GFC_INTEGER_16 * restrict dest;
+  const GFC_UINTEGER_16 * restrict base;
+  GFC_UINTEGER_16 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ sum_i16 (gfc_array_i16 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_16));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_16));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ sum_i16 (gfc_array_i16 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_16 * restrict src;
-      GFC_INTEGER_16 result;
+      const GFC_UINTEGER_16 * restrict src;
+      GFC_UINTEGER_16 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ sum_i16 (gfc_array_i16 * const restrict retarray,
 }
 
 
-extern void msum_i16 (gfc_array_i16 * const restrict, 
-       gfc_array_i16 * const restrict, const index_type * const restrict,
+extern void msum_i16 (gfc_array_m16 * const restrict,
+       gfc_array_m16 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_i16);
 
 void
-msum_i16 (gfc_array_i16 * const restrict retarray, 
-       gfc_array_i16 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_i16 (gfc_array_m16 * const restrict retarray,
+       gfc_array_m16 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ msum_i16 (gfc_array_i16 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_16 * restrict dest;
-  const GFC_INTEGER_16 * restrict base;
+  GFC_UINTEGER_16 * restrict dest;
+  const GFC_UINTEGER_16 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ msum_i16 (gfc_array_i16 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_16));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_16));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ msum_i16 (gfc_array_i16 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_16 * restrict src;
+      const GFC_UINTEGER_16 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_16 result;
+      GFC_UINTEGER_16 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ msum_i16 (gfc_array_i16 * const restrict retarray,
 }
 
 
-extern void ssum_i16 (gfc_array_i16 * const restrict, 
-       gfc_array_i16 * const restrict, const index_type * const restrict,
+extern void ssum_i16 (gfc_array_m16 * const restrict,
+       gfc_array_m16 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_i16);
 
 void
-ssum_i16 (gfc_array_i16 * const restrict retarray, 
-       gfc_array_i16 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_i16 (gfc_array_m16 * const restrict retarray,
+       gfc_array_m16 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_16 * restrict dest;
+  GFC_UINTEGER_16 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ ssum_i16 (gfc_array_i16 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_16));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_16));
       if (alloc_size == 0)
        return;
     }
index 7662a97a9b76d860a8549ef03b913fea04bd0753..5b08730b838294b0a2def76d27995f33df242a0b 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_2) && defined (HAVE_GFC_INTEGER_2)
+#if defined (HAVE_GFC_UINTEGER_2) && defined (HAVE_GFC_UINTEGER_2)
 
 
-extern void sum_i2 (gfc_array_i2 * const restrict, 
-       gfc_array_i2 * const restrict, const index_type * const restrict);
+extern void sum_i2 (gfc_array_m2 * const restrict,
+       gfc_array_m2 * const restrict, const index_type * const restrict);
 export_proto(sum_i2);
 
 void
-sum_i2 (gfc_array_i2 * const restrict retarray, 
-       gfc_array_i2 * const restrict array, 
+sum_i2 (gfc_array_m2 * const restrict retarray,
+       gfc_array_m2 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_2 * restrict base;
-  GFC_INTEGER_2 * restrict dest;
+  const GFC_UINTEGER_2 * restrict base;
+  GFC_UINTEGER_2 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ sum_i2 (gfc_array_i2 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_2));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_2));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ sum_i2 (gfc_array_i2 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_2 * restrict src;
-      GFC_INTEGER_2 result;
+      const GFC_UINTEGER_2 * restrict src;
+      GFC_UINTEGER_2 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ sum_i2 (gfc_array_i2 * const restrict retarray,
 }
 
 
-extern void msum_i2 (gfc_array_i2 * const restrict, 
-       gfc_array_i2 * const restrict, const index_type * const restrict,
+extern void msum_i2 (gfc_array_m2 * const restrict,
+       gfc_array_m2 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_i2);
 
 void
-msum_i2 (gfc_array_i2 * const restrict retarray, 
-       gfc_array_i2 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_i2 (gfc_array_m2 * const restrict retarray,
+       gfc_array_m2 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ msum_i2 (gfc_array_i2 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_2 * restrict dest;
-  const GFC_INTEGER_2 * restrict base;
+  GFC_UINTEGER_2 * restrict dest;
+  const GFC_UINTEGER_2 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ msum_i2 (gfc_array_i2 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_2));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_2));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ msum_i2 (gfc_array_i2 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_2 * restrict src;
+      const GFC_UINTEGER_2 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_2 result;
+      GFC_UINTEGER_2 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ msum_i2 (gfc_array_i2 * const restrict retarray,
 }
 
 
-extern void ssum_i2 (gfc_array_i2 * const restrict, 
-       gfc_array_i2 * const restrict, const index_type * const restrict,
+extern void ssum_i2 (gfc_array_m2 * const restrict,
+       gfc_array_m2 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_i2);
 
 void
-ssum_i2 (gfc_array_i2 * const restrict retarray, 
-       gfc_array_i2 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_i2 (gfc_array_m2 * const restrict retarray,
+       gfc_array_m2 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_2 * restrict dest;
+  GFC_UINTEGER_2 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ ssum_i2 (gfc_array_i2 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_2));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_2));
       if (alloc_size == 0)
        return;
     }
index eef9512192ed404850ca35bc07dbf22a2ec35129..a931cd55df5e27b01c6306fe8998dd3ac23c7eb1 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_4) && defined (HAVE_GFC_INTEGER_4)
+#if defined (HAVE_GFC_UINTEGER_4) && defined (HAVE_GFC_UINTEGER_4)
 
 
-extern void sum_i4 (gfc_array_i4 * const restrict, 
-       gfc_array_i4 * const restrict, const index_type * const restrict);
+extern void sum_i4 (gfc_array_m4 * const restrict,
+       gfc_array_m4 * const restrict, const index_type * const restrict);
 export_proto(sum_i4);
 
 void
-sum_i4 (gfc_array_i4 * const restrict retarray, 
-       gfc_array_i4 * const restrict array, 
+sum_i4 (gfc_array_m4 * const restrict retarray,
+       gfc_array_m4 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_4 * restrict base;
-  GFC_INTEGER_4 * restrict dest;
+  const GFC_UINTEGER_4 * restrict base;
+  GFC_UINTEGER_4 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ sum_i4 (gfc_array_i4 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_4));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_4));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ sum_i4 (gfc_array_i4 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_4 * restrict src;
-      GFC_INTEGER_4 result;
+      const GFC_UINTEGER_4 * restrict src;
+      GFC_UINTEGER_4 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ sum_i4 (gfc_array_i4 * const restrict retarray,
 }
 
 
-extern void msum_i4 (gfc_array_i4 * const restrict, 
-       gfc_array_i4 * const restrict, const index_type * const restrict,
+extern void msum_i4 (gfc_array_m4 * const restrict,
+       gfc_array_m4 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_i4);
 
 void
-msum_i4 (gfc_array_i4 * const restrict retarray, 
-       gfc_array_i4 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_i4 (gfc_array_m4 * const restrict retarray,
+       gfc_array_m4 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ msum_i4 (gfc_array_i4 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_4 * restrict dest;
-  const GFC_INTEGER_4 * restrict base;
+  GFC_UINTEGER_4 * restrict dest;
+  const GFC_UINTEGER_4 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ msum_i4 (gfc_array_i4 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_4));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_4));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ msum_i4 (gfc_array_i4 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_4 * restrict src;
+      const GFC_UINTEGER_4 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_4 result;
+      GFC_UINTEGER_4 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ msum_i4 (gfc_array_i4 * const restrict retarray,
 }
 
 
-extern void ssum_i4 (gfc_array_i4 * const restrict, 
-       gfc_array_i4 * const restrict, const index_type * const restrict,
+extern void ssum_i4 (gfc_array_m4 * const restrict,
+       gfc_array_m4 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_i4);
 
 void
-ssum_i4 (gfc_array_i4 * const restrict retarray, 
-       gfc_array_i4 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_i4 (gfc_array_m4 * const restrict retarray,
+       gfc_array_m4 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_4 * restrict dest;
+  GFC_UINTEGER_4 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ ssum_i4 (gfc_array_i4 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_4));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_4));
       if (alloc_size == 0)
        return;
     }
index 871154d066ccbc778c2520fedaf46b72f47fd97c..490a22c77b7a01df306c4122483217139a0fd520 100644 (file)
@@ -26,24 +26,24 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"
 
 
-#if defined (HAVE_GFC_INTEGER_8) && defined (HAVE_GFC_INTEGER_8)
+#if defined (HAVE_GFC_UINTEGER_8) && defined (HAVE_GFC_UINTEGER_8)
 
 
-extern void sum_i8 (gfc_array_i8 * const restrict, 
-       gfc_array_i8 * const restrict, const index_type * const restrict);
+extern void sum_i8 (gfc_array_m8 * const restrict,
+       gfc_array_m8 * const restrict, const index_type * const restrict);
 export_proto(sum_i8);
 
 void
-sum_i8 (gfc_array_i8 * const restrict retarray, 
-       gfc_array_i8 * const restrict array, 
+sum_i8 (gfc_array_m8 * const restrict retarray,
+       gfc_array_m8 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  const GFC_INTEGER_8 * restrict base;
-  GFC_INTEGER_8 * restrict dest;
+  const GFC_UINTEGER_8 * restrict base;
+  GFC_UINTEGER_8 * restrict dest;
   index_type rank;
   index_type n;
   index_type len;
@@ -104,7 +104,7 @@ sum_i8 (gfc_array_i8 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_8));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_8));
       if (alloc_size == 0)
        return;
     }
@@ -135,8 +135,8 @@ sum_i8 (gfc_array_i8 * const restrict retarray,
   continue_loop = 1;
   while (continue_loop)
     {
-      const GFC_INTEGER_8 * restrict src;
-      GFC_INTEGER_8 result;
+      const GFC_UINTEGER_8 * restrict src;
+      GFC_UINTEGER_8 result;
       src = base;
       {
 
@@ -188,15 +188,15 @@ sum_i8 (gfc_array_i8 * const restrict retarray,
 }
 
 
-extern void msum_i8 (gfc_array_i8 * const restrict, 
-       gfc_array_i8 * const restrict, const index_type * const restrict,
+extern void msum_i8 (gfc_array_m8 * const restrict,
+       gfc_array_m8 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_i8);
 
 void
-msum_i8 (gfc_array_i8 * const restrict retarray, 
-       gfc_array_i8 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_i8 (gfc_array_m8 * const restrict retarray,
+       gfc_array_m8 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -204,8 +204,8 @@ msum_i8 (gfc_array_i8 * const restrict retarray,
   index_type sstride[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
   index_type mstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_8 * restrict dest;
-  const GFC_INTEGER_8 * restrict base;
+  GFC_UINTEGER_8 * restrict dest;
+  const GFC_UINTEGER_8 * restrict base;
   const GFC_LOGICAL_1 * restrict mbase;
   index_type rank;
   index_type dim;
@@ -296,7 +296,7 @@ msum_i8 (gfc_array_i8 * const restrict retarray,
       retarray->offset = 0;
       retarray->dtype.rank = rank;
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_8));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_8));
       if (alloc_size == 0)
        return;
     }
@@ -327,9 +327,9 @@ msum_i8 (gfc_array_i8 * const restrict retarray,
 
   while (base)
     {
-      const GFC_INTEGER_8 * restrict src;
+      const GFC_UINTEGER_8 * restrict src;
       const GFC_LOGICAL_1 * restrict msrc;
-      GFC_INTEGER_8 result;
+      GFC_UINTEGER_8 result;
       src = base;
       msrc = mbase;
       {
@@ -378,21 +378,21 @@ msum_i8 (gfc_array_i8 * const restrict retarray,
 }
 
 
-extern void ssum_i8 (gfc_array_i8 * const restrict, 
-       gfc_array_i8 * const restrict, const index_type * const restrict,
+extern void ssum_i8 (gfc_array_m8 * const restrict,
+       gfc_array_m8 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_i8);
 
 void
-ssum_i8 (gfc_array_i8 * const restrict retarray, 
-       gfc_array_i8 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_i8 (gfc_array_m8 * const restrict retarray,
+       gfc_array_m8 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
   index_type extent[GFC_MAX_DIMENSIONS];
   index_type dstride[GFC_MAX_DIMENSIONS];
-  GFC_INTEGER_8 * restrict dest;
+  GFC_UINTEGER_8 * restrict dest;
   index_type rank;
   index_type n;
   index_type dim;
@@ -455,7 +455,7 @@ ssum_i8 (gfc_array_i8 * const restrict retarray,
 
       alloc_size = GFC_DESCRIPTOR_STRIDE(retarray,rank-1) * extent[rank-1];
 
-      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_INTEGER_8));
+      retarray->base_addr = xmallocarray (alloc_size, sizeof (GFC_UINTEGER_8));
       if (alloc_size == 0)
        return;
     }
index c05f60efcefe673ade1f6fb67ab988a99f5d941e..67d160c64a87efd43ea52be5831b6c460e4db45c 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_10) && defined (HAVE_GFC_REAL_10)
 
 
-extern void sum_r10 (gfc_array_r10 * const restrict, 
+extern void sum_r10 (gfc_array_r10 * const restrict,
        gfc_array_r10 * const restrict, const index_type * const restrict);
 export_proto(sum_r10);
 
 void
-sum_r10 (gfc_array_r10 * const restrict retarray, 
-       gfc_array_r10 * const restrict array, 
+sum_r10 (gfc_array_r10 * const restrict retarray,
+       gfc_array_r10 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_r10 (gfc_array_r10 * const restrict retarray,
 }
 
 
-extern void msum_r10 (gfc_array_r10 * const restrict, 
+extern void msum_r10 (gfc_array_r10 * const restrict,
        gfc_array_r10 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_r10);
 
 void
-msum_r10 (gfc_array_r10 * const restrict retarray, 
-       gfc_array_r10 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_r10 (gfc_array_r10 * const restrict retarray,
+       gfc_array_r10 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_r10 (gfc_array_r10 * const restrict retarray,
 }
 
 
-extern void ssum_r10 (gfc_array_r10 * const restrict, 
+extern void ssum_r10 (gfc_array_r10 * const restrict,
        gfc_array_r10 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_r10);
 
 void
-ssum_r10 (gfc_array_r10 * const restrict retarray, 
-       gfc_array_r10 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_r10 (gfc_array_r10 * const restrict retarray,
+       gfc_array_r10 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 5d7b6f959321eae062a71f267c52d42142cce2b0..a03959a52b25561376eb87992456533b9a14894a 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_16) && defined (HAVE_GFC_REAL_16)
 
 
-extern void sum_r16 (gfc_array_r16 * const restrict, 
+extern void sum_r16 (gfc_array_r16 * const restrict,
        gfc_array_r16 * const restrict, const index_type * const restrict);
 export_proto(sum_r16);
 
 void
-sum_r16 (gfc_array_r16 * const restrict retarray, 
-       gfc_array_r16 * const restrict array, 
+sum_r16 (gfc_array_r16 * const restrict retarray,
+       gfc_array_r16 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_r16 (gfc_array_r16 * const restrict retarray,
 }
 
 
-extern void msum_r16 (gfc_array_r16 * const restrict, 
+extern void msum_r16 (gfc_array_r16 * const restrict,
        gfc_array_r16 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_r16);
 
 void
-msum_r16 (gfc_array_r16 * const restrict retarray, 
-       gfc_array_r16 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_r16 (gfc_array_r16 * const restrict retarray,
+       gfc_array_r16 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_r16 (gfc_array_r16 * const restrict retarray,
 }
 
 
-extern void ssum_r16 (gfc_array_r16 * const restrict, 
+extern void ssum_r16 (gfc_array_r16 * const restrict,
        gfc_array_r16 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_r16);
 
 void
-ssum_r16 (gfc_array_r16 * const restrict retarray, 
-       gfc_array_r16 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_r16 (gfc_array_r16 * const restrict retarray,
+       gfc_array_r16 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 912446673cc3502e8366b7e445ef4bd3cf6b544e..13dfe65426296a4c2ed5d42e2a943da923210686 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_17) && defined (HAVE_GFC_REAL_17)
 
 
-extern void sum_r17 (gfc_array_r17 * const restrict, 
+extern void sum_r17 (gfc_array_r17 * const restrict,
        gfc_array_r17 * const restrict, const index_type * const restrict);
 export_proto(sum_r17);
 
 void
-sum_r17 (gfc_array_r17 * const restrict retarray, 
-       gfc_array_r17 * const restrict array, 
+sum_r17 (gfc_array_r17 * const restrict retarray,
+       gfc_array_r17 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_r17 (gfc_array_r17 * const restrict retarray,
 }
 
 
-extern void msum_r17 (gfc_array_r17 * const restrict, 
+extern void msum_r17 (gfc_array_r17 * const restrict,
        gfc_array_r17 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_r17);
 
 void
-msum_r17 (gfc_array_r17 * const restrict retarray, 
-       gfc_array_r17 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_r17 (gfc_array_r17 * const restrict retarray,
+       gfc_array_r17 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_r17 (gfc_array_r17 * const restrict retarray,
 }
 
 
-extern void ssum_r17 (gfc_array_r17 * const restrict, 
+extern void ssum_r17 (gfc_array_r17 * const restrict,
        gfc_array_r17 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_r17);
 
 void
-ssum_r17 (gfc_array_r17 * const restrict retarray, 
-       gfc_array_r17 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_r17 (gfc_array_r17 * const restrict retarray,
+       gfc_array_r17 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 1147f2e5ef5c9bed64d53f5a4f0fac73fc20c0e8..b9e6ed12ce70ed1a82fa042d1200f4320f2b4f13 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_4) && defined (HAVE_GFC_REAL_4)
 
 
-extern void sum_r4 (gfc_array_r4 * const restrict, 
+extern void sum_r4 (gfc_array_r4 * const restrict,
        gfc_array_r4 * const restrict, const index_type * const restrict);
 export_proto(sum_r4);
 
 void
-sum_r4 (gfc_array_r4 * const restrict retarray, 
-       gfc_array_r4 * const restrict array, 
+sum_r4 (gfc_array_r4 * const restrict retarray,
+       gfc_array_r4 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_r4 (gfc_array_r4 * const restrict retarray,
 }
 
 
-extern void msum_r4 (gfc_array_r4 * const restrict, 
+extern void msum_r4 (gfc_array_r4 * const restrict,
        gfc_array_r4 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_r4);
 
 void
-msum_r4 (gfc_array_r4 * const restrict retarray, 
-       gfc_array_r4 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_r4 (gfc_array_r4 * const restrict retarray,
+       gfc_array_r4 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_r4 (gfc_array_r4 * const restrict retarray,
 }
 
 
-extern void ssum_r4 (gfc_array_r4 * const restrict, 
+extern void ssum_r4 (gfc_array_r4 * const restrict,
        gfc_array_r4 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_r4);
 
 void
-ssum_r4 (gfc_array_r4 * const restrict retarray, 
-       gfc_array_r4 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_r4 (gfc_array_r4 * const restrict retarray,
+       gfc_array_r4 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 5fa036bb6568909cf82e1fa367c7b46f9bd85f76..ff7e9f368c10f5e9ba34379da42a461e086bd0c9 100644 (file)
@@ -29,13 +29,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #if defined (HAVE_GFC_REAL_8) && defined (HAVE_GFC_REAL_8)
 
 
-extern void sum_r8 (gfc_array_r8 * const restrict, 
+extern void sum_r8 (gfc_array_r8 * const restrict,
        gfc_array_r8 * const restrict, const index_type * const restrict);
 export_proto(sum_r8);
 
 void
-sum_r8 (gfc_array_r8 * const restrict retarray, 
-       gfc_array_r8 * const restrict array, 
+sum_r8 (gfc_array_r8 * const restrict retarray,
+       gfc_array_r8 * const restrict array,
        const index_type * const restrict pdim)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -188,15 +188,15 @@ sum_r8 (gfc_array_r8 * const restrict retarray,
 }
 
 
-extern void msum_r8 (gfc_array_r8 * const restrict, 
+extern void msum_r8 (gfc_array_r8 * const restrict,
        gfc_array_r8 * const restrict, const index_type * const restrict,
        gfc_array_l1 * const restrict);
 export_proto(msum_r8);
 
 void
-msum_r8 (gfc_array_r8 * const restrict retarray, 
-       gfc_array_r8 * const restrict array, 
-       const index_type * const restrict pdim, 
+msum_r8 (gfc_array_r8 * const restrict retarray,
+       gfc_array_r8 * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -378,15 +378,15 @@ msum_r8 (gfc_array_r8 * const restrict retarray,
 }
 
 
-extern void ssum_r8 (gfc_array_r8 * const restrict, 
+extern void ssum_r8 (gfc_array_r8 * const restrict,
        gfc_array_r8 * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *);
 export_proto(ssum_r8);
 
 void
-ssum_r8 (gfc_array_r8 * const restrict retarray, 
-       gfc_array_r8 * const restrict array, 
-       const index_type * const restrict pdim, 
+ssum_r8 (gfc_array_r8 * const restrict retarray,
+       gfc_array_r8 * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 8e32d49218b7577d5e69d6d430c5267b846d9eba..101175ef5ff829b736b19d3754b495db4d29f1db 100644 (file)
@@ -19,13 +19,13 @@ dnl You should not return or break from the inner loop of the implementation.
 dnl Care should also be taken to avoid using the names defined in iparm.m4
 define(START_ARRAY_FUNCTION,
 `
-extern void name`'rtype_qual`_'atype_code (rtype * const restrict, 
+extern void name`'rtype_qual`_'atype_code (rtype * const restrict,
        atype` * const restrict, const 'index_type` * const restrict'back_arg`);
 export_proto('name`'rtype_qual`_'atype_code);
 
 void
-name`'rtype_qual`_'atype_code` ('rtype` * const restrict retarray, 
-       'atype` * const restrict array, 
+name`'rtype_qual`_'atype_code` ('rtype` * const restrict retarray,
+       'atype` * const restrict array,
        const index_type * const restrict pdim'back_arg`)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -178,15 +178,15 @@ define(FINISH_ARRAY_FUNCTION,
 }')dnl
 define(START_MASKED_ARRAY_FUNCTION,
 `
-extern void `m'name`'rtype_qual`_'atype_code` ('rtype` * const restrict, 
+extern void `m'name`'rtype_qual`_'atype_code` ('rtype` * const restrict,
        'atype` * const restrict, const 'index_type` * const restrict,
        gfc_array_l1 * const restrict'back_arg`);
 export_proto(m'name`'rtype_qual`_'atype_code`);
 
 void
-m'name`'rtype_qual`_'atype_code` ('rtype` * const restrict retarray, 
-       'atype` * const restrict array, 
-       const index_type * const restrict pdim, 
+m'name`'rtype_qual`_'atype_code` ('rtype` * const restrict retarray,
+       'atype` * const restrict array,
+       const index_type * const restrict pdim,
        gfc_array_l1 * const restrict mask'back_arg`)
 {
   index_type count[GFC_MAX_DIMENSIONS];
@@ -367,15 +367,15 @@ define(FINISH_MASKED_ARRAY_FUNCTION,
 }')dnl
 define(SCALAR_ARRAY_FUNCTION,
 `
-extern void `s'name`'rtype_qual`_'atype_code` ('rtype` * const restrict, 
+extern void `s'name`'rtype_qual`_'atype_code` ('rtype` * const restrict,
        'atype` * const restrict, const index_type * const restrict,
        GFC_LOGICAL_4 *'back_arg`);
 export_proto(s'name`'rtype_qual`_'atype_code);
 
 void
-`s'name`'rtype_qual`_'atype_code` ('rtype` * const restrict retarray, 
-       'atype` * const restrict array, 
-       const index_type * const restrict pdim, 
+`s'name`'rtype_qual`_'atype_code` ('rtype` * const restrict retarray,
+       'atype` * const restrict array,
+       const index_type * const restrict pdim,
        GFC_LOGICAL_4 * mask'back_arg`)
 {
   index_type count[GFC_MAX_DIMENSIONS];
index 187cb58d25c3dfbbee7b36934ffff73483edeaf5..36c41df55a8937133f273ec8b7ce49a09fbdd209 100644 (file)
@@ -26,6 +26,11 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"'
 
 include(iparm.m4)dnl
+ifelse(index(rtype_name,`GFC_INTEGER'),`0',dnl
+define(`rtype_name',patsubst(rtype_name,`GFC_INTEGER',`GFC_UINTEGER'))dnl
+define(`atype_name',patsubst(rtype_name,`GFC_INTEGER',`GFC_UINTEGER'))dnl
+define(`rtype',patsubst(rtype,`gfc_array_i',`gfc_array_m'))dnl
+define(`atype',patsubst(rtype,`gfc_array_i',`gfc_array_m')))dnl
 include(ifunction.m4)dnl
 
 `#if defined (HAVE_'atype_name`) && defined (HAVE_'rtype_name`)'
index 89e097074ddcd0455384328b7783664bde22aa66..5dd7793b6ec97632256a570d4f521d7faaf080e6 100644 (file)
@@ -26,6 +26,11 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #include "libgfortran.h"'
 
 include(iparm.m4)dnl
+ifelse(index(rtype_name,`GFC_INTEGER'),`0',dnl
+define(`rtype_name',patsubst(rtype_name,`GFC_INTEGER',`GFC_UINTEGER'))dnl
+define(`atype_name',patsubst(rtype_name,`GFC_INTEGER',`GFC_UINTEGER'))dnl
+define(`rtype',patsubst(rtype,`gfc_array_i',`gfc_array_m'))dnl
+define(`atype',patsubst(rtype,`gfc_array_i',`gfc_array_m')))dnl
 include(ifunction.m4)dnl
 
 `#if defined (HAVE_'atype_name`) && defined (HAVE_'rtype_name`)'