diff options
Diffstat (limited to 'gcc/fortran/openmp.c')
-rw-r--r-- | gcc/fortran/openmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/openmp.c b/gcc/fortran/openmp.c index 2b70c69..69a6bca 100644 --- a/gcc/fortran/openmp.c +++ b/gcc/fortran/openmp.c @@ -70,7 +70,7 @@ gfc_free_omp_clauses (gfc_omp_clauses *c) gfc_free_expr (c->chunk_size); for (i = 0; i < OMP_LIST_NUM; i++) gfc_free_namelist (c->lists[i]); - gfc_free (c); + free (c); } /* Match a variable/common block list and construct a namelist from it. */ |