diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-23 22:59:52 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-23 22:59:52 +0000 |
commit | ec66e176391c235d053e747dac2cd0d35c33d51c (patch) | |
tree | 706cf36e2334b199ff85b105df71b6f0e4e4566c /gcc/ada/gigi.h | |
parent | 479e4d5e1b15ee85a3cd4dbda8e2b2577d298226 (diff) | |
download | gcc-ec66e176391c235d053e747dac2cd0d35c33d51c.tar.gz |
* misc.c (gnat_init, gnat_init_options, gnat_decode_option):
Now static.
(LANG_HOOKS_GET_ALIAS_SET): New macro.
(gnat_expand_expr, case NULL_EXPR): Always call set_mem_attributes.
(gnat_get_alias_set): Renamed from lang_get_alias_set.
* gigi.h (gnat_decode_option, gnat_init_option, gnat_init):
Delete declarations.
(gnat_get_alias_set): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46449 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/gigi.h')
-rw-r--r-- | gcc/ada/gigi.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/gcc/ada/gigi.h b/gcc/ada/gigi.h index 49d8533c8c9..82848532b05 100644 --- a/gcc/ada/gigi.h +++ b/gcc/ada/gigi.h @@ -6,7 +6,7 @@ * * * C Header File * * * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * * * Copyright (C) 1992-2001 Free Software Foundation, Inc. * * * @@ -34,18 +34,6 @@ /* Declare all functions and types used by gigi. */ -/* Decode all the language specific options that cannot be decoded by GCC. The - option decoding phase of GCC calls this routine on the flags that it cannot - decode. This routine returns 1 if it is successful, otherwise it - returns 0. */ -extern int gnat_decode_option PARAMS ((int, char **)); - -/* Perform all initialization steps for option processing. */ -extern void gnat_init_options PARAMS ((void)); - -/* Perform all the initialization steps that are language-specific. */ -extern void gnat_init PARAMS ((void)); - /* See if DECL has an RTL that is indirect via a pseudo-register or a memory location and replace it with an indirect reference if so. This improves the debugger's ability to display the value. */ @@ -68,9 +56,6 @@ extern tree make_transform_expr PARAMS ((Node_Id)); here that a __builtin_setjmp was done to BUF. */ extern void update_setjmp_buf PARAMS ((tree)); -/* Get the alias set corresponding to a type or expression. */ -extern HOST_WIDE_INT gnat_get_alias_set PARAMS ((tree)); - /* GNU_TYPE is a type. Determine if it should be passed by reference by default. */ extern int default_pass_by_ref PARAMS ((tree)); |