diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 12:44:32 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-29 12:44:32 +0000 |
commit | a5014d251126a0107ed852c02fb166260a358183 (patch) | |
tree | 01404bd7b2cf9f1674f08538ac495ecf3cd28d04 /libgfortran/gfortran.map | |
parent | 8059d3507a3bd61c18ab89d46babdf28df29c6ee (diff) | |
download | gcc-a5014d251126a0107ed852c02fb166260a358183.tar.gz |
* builtin-types.def (BT_FN_PTR_PTR_SIZE): New type.
* builtins.def (BUILT_IN_REALLOC): New builtin.
* trans-array.c (gfc_grow_array): Use gfc_call_realloc.
(gfc_array_allocate): Use gfc_allocate_with_status and
gfc_allocate_array_with_status.
(gfc_array_deallocate): Use gfc_deallocate_with_status.
(gfc_trans_dealloc_allocated): Use gfc_deallocate_with_status.
* trans-stmt.c (gfc_trans_allocate): Use gfc_allocate_with_status.
(gfc_trans_deallocate): Use gfc_deallocate_with_status.
* trans.c (gfc_allocate_with_status, gfc_allocate_array_with_status,
gfc_deallocate_with_status, gfc_call_realloc): New functions.
* trans.h (gfc_allocate_with_status, gfc_allocate_array_with_status,
gfc_deallocate_with_status, gfc_call_realloc): New prototypes.
(gfor_fndecl_internal_realloc, gfor_fndecl_allocate,
gfor_fndecl_allocate_array, gfor_fndecl_deallocate): Remove.
* f95-lang.c (gfc_init_builtin_functions): Create decl for
BUILT_IN_REALLOC.
* trans-decl.c (gfor_fndecl_internal_realloc,
gfor_fndecl_allocate, gfor_fndecl_allocate_array,
gfor_fndecl_deallocate): Remove function decls.
(gfc_build_builtin_function_decls): Likewise.
* runtime/memory.c (internal_realloc, allocate, allocate_array,
deallocate): Remove functions.
* gfortran.map (_gfortran_allocate, _gfortran_allocate_array,
_gfortran_deallocate, _gfortran_internal_realloc): Remove symbols.
* libgfortran.h (error_codes): Add comment.
* gfortran.dg/alloc_comp_basics_1.f90: Update check.
* gfortran.dg/alloc_comp_constructor_1.f90: Update check.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127897 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/gfortran.map')
-rw-r--r-- | libgfortran/gfortran.map | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libgfortran/gfortran.map b/libgfortran/gfortran.map index 31ca41e9f88..429c84c8c4a 100644 --- a/libgfortran/gfortran.map +++ b/libgfortran/gfortran.map @@ -11,8 +11,6 @@ GFORTRAN_1.0 { _gfortran_all_l16; _gfortran_all_l4; _gfortran_all_l8; - _gfortran_allocate; - _gfortran_allocate_array; _gfortran_any_l16; _gfortran_any_l4; _gfortran_any_l8; @@ -60,7 +58,6 @@ GFORTRAN_1.0 { _gfortran_ctime; _gfortran_ctime_sub; _gfortran_date_and_time; - _gfortran_deallocate; _gfortran_eoshift0_1; _gfortran_eoshift0_1_char; _gfortran_eoshift0_2; @@ -167,7 +164,6 @@ GFORTRAN_1.0 { _gfortran_ierrno_i4; _gfortran_ierrno_i8; _gfortran_internal_pack; - _gfortran_internal_realloc; _gfortran_internal_unpack; _gfortran_irand; _gfortran_isatty_l4; |