diff options
Diffstat (limited to 'gcc/fortran/trans-decl.c')
-rw-r--r-- | gcc/fortran/trans-decl.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/fortran/trans-decl.c b/gcc/fortran/trans-decl.c index 47911ff..41f5abe 100644 --- a/gcc/fortran/trans-decl.c +++ b/gcc/fortran/trans-decl.c @@ -80,6 +80,8 @@ tree gfor_fndecl_internal_realloc64; tree gfor_fndecl_internal_free; tree gfor_fndecl_allocate; tree gfor_fndecl_allocate64; +tree gfor_fndecl_allocate_array; +tree gfor_fndecl_allocate64_array; tree gfor_fndecl_deallocate; tree gfor_fndecl_pause_numeric; tree gfor_fndecl_pause_string; @@ -2193,6 +2195,16 @@ gfc_build_builtin_function_decls (void) void_type_node, 2, ppvoid_type_node, gfc_int8_type_node); + gfor_fndecl_allocate_array = + gfc_build_library_function_decl (get_identifier (PREFIX("allocate_array")), + void_type_node, 2, ppvoid_type_node, + gfc_int4_type_node); + + gfor_fndecl_allocate64_array = + gfc_build_library_function_decl (get_identifier (PREFIX("allocate64_array")), + void_type_node, 2, ppvoid_type_node, + gfc_int8_type_node); + gfor_fndecl_deallocate = gfc_build_library_function_decl (get_identifier (PREFIX("deallocate")), void_type_node, 2, ppvoid_type_node, |