diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2005-11-27 23:03:33 +0200 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2005-11-27 23:03:33 +0200 |
commit | 64acfd9910111c7d754802a3b9c92ee82e441113 (patch) | |
tree | b1791f0354ad0366d696ec9df523d82d3bd9fe26 /libgfortran/generated/reshape_c16.c | |
parent | 949446f55711f5fa957caa6a8a1df7bd6b185471 (diff) | |
download | gcc-64acfd9910111c7d754802a3b9c92ee82e441113.zip gcc-64acfd9910111c7d754802a3b9c92ee82e441113.tar.gz gcc-64acfd9910111c7d754802a3b9c92ee82e441113.tar.bz2 |
libgfortran ChangeLog:
2005-11-27 Janne Blomqvist <jb@gcc.gnu.org>
* m4/*: Add const restrict to function arguments.
* generated/*.c: Regenerate.
From-SVN: r107573
Diffstat (limited to 'libgfortran/generated/reshape_c16.c')
-rw-r--r-- | libgfortran/generated/reshape_c16.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/libgfortran/generated/reshape_c16.c b/libgfortran/generated/reshape_c16.c index 1c238de..f3c4a90 100644 --- a/libgfortran/generated/reshape_c16.c +++ b/libgfortran/generated/reshape_c16.c @@ -40,13 +40,19 @@ typedef GFC_ARRAY_DESCRIPTOR(1, index_type) shape_type; /* The shape parameter is ignored. We can currently deduce the shape from the return array. */ -extern void reshape_c16 (gfc_array_c16 *, gfc_array_c16 *, shape_type *, - gfc_array_c16 *, shape_type *); +extern void reshape_c16 (gfc_array_c16 * const restrict, + gfc_array_c16 * const restrict, + shape_type * const restrict, + gfc_array_c16 * const restrict, + shape_type * const restrict); export_proto(reshape_c16); void -reshape_c16 (gfc_array_c16 * ret, gfc_array_c16 * source, shape_type * shape, - gfc_array_c16 * pad, shape_type * order) +reshape_c16 (gfc_array_c16 * const restrict ret, + gfc_array_c16 * const restrict source, + shape_type * const restrict shape, + gfc_array_c16 * const restrict pad, + shape_type * const restrict order) { /* r.* indicates the return array. */ index_type rcount[GFC_MAX_DIMENSIONS]; |