diff options
author | Bernd Schmidt <bernds@cygnus.co.uk> | 1999-08-09 14:00:21 +0000 |
---|---|---|
committer | Bernd Schmidt <crux@gcc.gnu.org> | 1999-08-09 14:00:21 +0000 |
commit | 49ad7cfa7ac804b56cff13d70022020126f24c55 (patch) | |
tree | 0c9ea6c13240638f450e4b7c92af4127356208c0 /gcc/config/pa | |
parent | 0dde4175efc346c70069a8a090590d3e63be04fa (diff) | |
download | gcc-49ad7cfa7ac804b56cff13d70022020126f24c55.zip gcc-49ad7cfa7ac804b56cff13d70022020126f24c55.tar.gz gcc-49ad7cfa7ac804b56cff13d70022020126f24c55.tar.bz2 |
Include function.h in most files.
Include function.h in most files. Remove most of the global variables
duplicated in function.h. Add accessor macros for them which access
current_function. Delete INLINE_HEADER rtx and related code, replace
with code using struct function to store inlining related data.
From-SVN: r28626
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/pa.c | 2 | ||||
-rw-r--r-- | gcc/config/pa/pa.h | 6 | ||||
-rw-r--r-- | gcc/config/pa/som.h | 2 |
3 files changed, 2 insertions, 8 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 12b28c6..cdf1a4b 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -35,6 +35,7 @@ Boston, MA 02111-1307, USA. */ #include "tree.h" #include "reload.h" #include "c-tree.h" +#include "function.h" #include "expr.h" #include "obstack.h" #include "toplev.h" @@ -2599,7 +2600,6 @@ compute_frame_size (size, fregs_live) int size; int *fregs_live; { - extern int current_function_outgoing_args_size; int i, fsize; /* Space for frame pointer + filler. If any frame is allocated diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 31d04ea..c27fbf0 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1121,7 +1121,6 @@ extern enum cmp_type hppa_branch_type; No definition is equivalent to always zero. */ extern int may_call_alloca; -extern int current_function_pretend_args_size; #define EXIT_IGNORE_STACK \ (get_frame_size () != 0 \ @@ -1138,11 +1137,6 @@ extern int current_function_pretend_args_size; of alloca; we also take advantage of it to omit stack adjustments before returning. */ -/* This declaration is needed due to traditional/ANSI - incompatibilities which cannot be #ifdefed away - because they occur inside of macros. Sigh. */ -extern union tree_node *current_function_decl; - #define FUNCTION_EPILOGUE(FILE, SIZE) \ output_function_epilogue (FILE, SIZE) diff --git a/gcc/config/pa/som.h b/gcc/config/pa/som.h index 291faee..6f3d779 100644 --- a/gcc/config/pa/som.h +++ b/gcc/config/pa/som.h @@ -136,7 +136,7 @@ do { \ tree parm; \ int i; \ if (TREE_PUBLIC (DECL) || TARGET_GAS) \ - { extern int current_function_varargs; \ + { \ if (TREE_PUBLIC (DECL)) \ { \ fputs ("\t.EXPORT ", FILE); \ |