diff options
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/trans-openmp.c | 2 | ||||
-rw-r--r-- | gcc/fortran/trans.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 95726ff159c..590258a4740 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2007-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * trans-openmp.c (gfc_omp_privatize_by_reference): Constify. + * trans.h (gfc_omp_privatize_by_reference): Likewise. + 2007-08-24 Tobias Burnus <burnus@net-b.de> PR fortran/33178 diff --git a/gcc/fortran/trans-openmp.c b/gcc/fortran/trans-openmp.c index 1af10369824..047c2b82ca5 100644 --- a/gcc/fortran/trans-openmp.c +++ b/gcc/fortran/trans-openmp.c @@ -40,7 +40,7 @@ along with GCC; see the file COPYING3. If not see than the DECL itself. */ bool -gfc_omp_privatize_by_reference (tree decl) +gfc_omp_privatize_by_reference (const_tree decl) { tree type = TREE_TYPE (decl); diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index 829551e7b45..48bc9fce8cb 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -474,7 +474,7 @@ tree gfc_truthvalue_conversion (tree); tree gfc_builtin_function (tree); /* In trans-openmp.c */ -bool gfc_omp_privatize_by_reference (tree); +bool gfc_omp_privatize_by_reference (const_tree); enum omp_clause_default_kind gfc_omp_predetermined_sharing (tree); tree gfc_omp_clause_default_ctor (tree, tree); bool gfc_omp_disregard_value_expr (tree, bool); |