aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/libgfortran/m4
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.6/libgfortran/m4')
-rw-r--r--gcc-4.6/libgfortran/m4/ifunction.m43
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc-4.6/libgfortran/m4/ifunction.m4 b/gcc-4.6/libgfortran/m4/ifunction.m4
index 72b05f45e..68e1c5e18 100644
--- a/gcc-4.6/libgfortran/m4/ifunction.m4
+++ b/gcc-4.6/libgfortran/m4/ifunction.m4
@@ -88,6 +88,7 @@ name`'rtype_qual`_'atype_code (rtype * const restrict retarray,
alloc_size = sizeof (rtype_name) * GFC_DESCRIPTOR_STRIDE(retarray,rank-1)
* extent[rank-1];
+ retarray->data = internal_malloc_size (alloc_size);
if (alloc_size == 0)
{
/* Make sure we have a zero-sized array. */
@@ -95,8 +96,6 @@ name`'rtype_qual`_'atype_code (rtype * const restrict retarray,
return;
}
- else
- retarray->data = internal_malloc_size (alloc_size);
}
else
{