diff options
Diffstat (limited to 'libgfortran/generated/matmul_l16.c')
-rw-r--r-- | libgfortran/generated/matmul_l16.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libgfortran/generated/matmul_l16.c b/libgfortran/generated/matmul_l16.c index 5fbeeb7da1d..1ae8f7a9cb6 100644 --- a/libgfortran/generated/matmul_l16.c +++ b/libgfortran/generated/matmul_l16.c @@ -1,8 +1,8 @@ /* Implementation of the MATMUL intrinsic - Copyright 2002, 2005, 2006, 2007, 2009 Free Software Foundation, Inc. + Copyright 2002, 2005, 2006, 2007, 2009, 2012 Free Software Foundation, Inc. Contributed by Paul Brook <paul@nowt.org> -This file is part of the GNU Fortran 95 runtime library (libgfortran). +This file is part of the GNU Fortran runtime library (libgfortran). Libgfortran is free software; you can redistribute it and/or modify it under the terms of the GNU General Public @@ -65,7 +65,7 @@ matmul_l16 (gfc_array_l16 * const restrict retarray, assert (GFC_DESCRIPTOR_RANK (a) == 2 || GFC_DESCRIPTOR_RANK (b) == 2); - if (retarray->data == NULL) + if (retarray->base_addr == NULL) { if (GFC_DESCRIPTOR_RANK (a) == 1) { @@ -87,7 +87,7 @@ matmul_l16 (gfc_array_l16 * const restrict retarray, GFC_DESCRIPTOR_EXTENT(retarray,0)); } - retarray->data + retarray->base_addr = internal_malloc_size (sizeof (GFC_LOGICAL_16) * size0 ((array_t *) retarray)); retarray->offset = 0; } @@ -133,7 +133,7 @@ matmul_l16 (gfc_array_l16 * const restrict retarray, } } - abase = a->data; + abase = a->base_addr; a_kind = GFC_DESCRIPTOR_SIZE (a); if (a_kind == 1 || a_kind == 2 || a_kind == 4 || a_kind == 8 @@ -145,7 +145,7 @@ matmul_l16 (gfc_array_l16 * const restrict retarray, else internal_error (NULL, "Funny sized logical array"); - bbase = b->data; + bbase = b->base_addr; b_kind = GFC_DESCRIPTOR_SIZE (b); if (b_kind == 1 || b_kind == 2 || b_kind == 4 || b_kind == 8 @@ -157,7 +157,7 @@ matmul_l16 (gfc_array_l16 * const restrict retarray, else internal_error (NULL, "Funny sized logical array"); - dest = retarray->data; + dest = retarray->base_addr; if (GFC_DESCRIPTOR_RANK (retarray) == 1) |