diff options
Diffstat (limited to 'gcc/fortran/trans-common.c')
-rw-r--r-- | gcc/fortran/trans-common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fortran/trans-common.c b/gcc/fortran/trans-common.c index ad4ef06..a2b2605 100644 --- a/gcc/fortran/trans-common.c +++ b/gcc/fortran/trans-common.c @@ -521,8 +521,8 @@ get_init_field (segment_info *head, tree union_type, tree *field_init, for (i = 0; i < length; i++) CONSTRUCTOR_APPEND_ELT (v, NULL, build_int_cst (type, data[i])); - gfc_free (data); - gfc_free (chk); + free (data); + free (chk); /* Build a char[length] array to hold the initializers. Much of what follows is borrowed from build_field, above. */ @@ -720,7 +720,7 @@ create_common (gfc_common_head *com, segment_info *head, bool saw_equiv) s->sym->backend_decl = var_decl; next_s = s->next; - gfc_free (s); + free (s); } } |