diff options
Diffstat (limited to 'gcc/fortran/cpp.c')
-rw-r--r-- | gcc/fortran/cpp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/fortran/cpp.c b/gcc/fortran/cpp.c index 4c1307c..0dece6c 100644 --- a/gcc/fortran/cpp.c +++ b/gcc/fortran/cpp.c @@ -1109,8 +1109,8 @@ dump_queued_macros (cpp_reader *pfile ATTRIBUTE_UNUSED) print.src_line++; oq = q; q = q->next; - gfc_free (oq->macro); - gfc_free (oq); + free (oq->macro); + free (oq); } cpp_define_queue = NULL; for (q = cpp_undefine_queue; q;) @@ -1120,8 +1120,8 @@ dump_queued_macros (cpp_reader *pfile ATTRIBUTE_UNUSED) print.src_line++; oq = q; q = q->next; - gfc_free (oq->macro); - gfc_free (oq); + free (oq->macro); + free (oq); } cpp_undefine_queue = NULL; } |