From 75ef384e85c3c2355ed1f8b1f1cae3998663f42e Mon Sep 17 00:00:00 2001 From: Janne Blomqvist Date: Mon, 16 Jul 2007 00:33:32 +0300 Subject: [PATCH] re PR target/32748 (gfortran.dg/array_constructor_6.f90) 2007-07-16 Janne Blomqvist PR fortran/32748 * trans-decl.c (gfc_build_builtin_function_decls): Remove DECL_IS_MALLOC attribute from internal_realloc, thus reverting part of my 2007-07-03 patch. From-SVN: r126662 --- gcc/fortran/ChangeLog | 7 +++++++ gcc/fortran/trans-decl.c | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index c71a360d..67b31a6 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,10 @@ +2007-07-16 Janne Blomqvist + + PR fortran/32748 + * trans-decl.c (gfc_build_builtin_function_decls): Remove + DECL_IS_MALLOC attribute from internal_realloc, thus reverting + part of my 2007-07-03 patch. + 2007-07-15 Jerry DeLisle Francois-Xavier Coudert diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index ddd8025..e07fba4 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -2290,7 +2290,6 @@ gfc_build_builtin_function_decls (void) (PREFIX("internal_realloc")), pvoid_type_node, 2, pvoid_type_node, gfc_index_int_type_node); - DECL_IS_MALLOC (gfor_fndecl_internal_realloc) = 1; gfor_fndecl_allocate = gfc_build_library_function_decl (get_identifier (PREFIX("allocate")), -- 2.7.4