diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2021-10-24 21:22:11 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2021-10-27 21:23:44 +0200 |
commit | e90e0301d575ee299dc823be8c489ee6248057ff (patch) | |
tree | 30b13a3362846273be21df86137081fbcf6a310a /gcc/fortran/constructor.h | |
parent | 28b3a7788eece202f05614dd64b8e1d0f4b766a2 (diff) | |
download | gcc-e90e0301d575ee299dc823be8c489ee6248057ff.zip gcc-e90e0301d575ee299dc823be8c489ee6248057ff.tar.gz gcc-e90e0301d575ee299dc823be8c489ee6248057ff.tar.bz2 |
Fortran: make some constructor* functions static
gfc_constructor_expr_foreach and gfc_constructor_swap were just stubs.
gcc/fortran/ChangeLog:
* constructor.c (gfc_constructor_get_base): Make static.
(gfc_constructor_expr_foreach, gfc_constructor_swap): Delete.
* constructor.h (gfc_constructor_get_base): Remove declaration.
(gfc_constructor_expr_foreach, gfc_constructor_swap): Delete.
Diffstat (limited to 'gcc/fortran/constructor.h')
-rw-r--r-- | gcc/fortran/constructor.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/fortran/constructor.h b/gcc/fortran/constructor.h index 85a72dc..25cd6a8 100644 --- a/gcc/fortran/constructor.h +++ b/gcc/fortran/constructor.h @@ -23,8 +23,6 @@ along with GCC; see the file COPYING3. If not see /* Get a new constructor structure. */ gfc_constructor *gfc_constructor_get (void); -gfc_constructor_base gfc_constructor_get_base (void); - /* Copy a constructor structure. */ gfc_constructor_base gfc_constructor_copy (gfc_constructor_base base); @@ -64,14 +62,6 @@ gfc_constructor *gfc_constructor_lookup (gfc_constructor_base base, int n); */ gfc_expr *gfc_constructor_lookup_expr (gfc_constructor_base base, int n); - -int gfc_constructor_expr_foreach (gfc_constructor *ctor, int(*)(gfc_expr *)); - - -void gfc_constructor_swap (gfc_constructor *ctor, int n, int m); - - - /* Get the first constructor node in the constructure structure. Returns NULL if there is no such expression. */ gfc_constructor *gfc_constructor_first (gfc_constructor_base base); |