function.c: Make outer_function-chain external.

2003-11-23  Waldek Hebisch <hebisch@math.uni.wroc.pl>

	* function.c: Make outer_function-chain external.
	* function.h: Likewise.

From-SVN: r73894
This commit is contained in:
Waldek Hebisch 2003-11-24 22:19:33 +01:00 committed by Andreas Jaeger
parent 3c8797ae81
commit 1be4cd1f28
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-11-23 Waldek Hebisch <hebisch@math.uni.wroc.pl>
* function.c: Make outer_function-chain external.
* function.h: Likewise.
2003-11-24 Richard Sandiford <rsandifo@redhat.com>
* config.gcc (mips-sgi-irix6*): Add t-iris6gld to tmake_file when

View File

@ -295,7 +295,7 @@ static tree split_complex_args (tree);
static void set_insn_locators (rtx, int) ATTRIBUTE_UNUSED;
/* Pointer to chain of `struct function' for containing functions. */
static GTY(()) struct function *outer_function_chain;
struct function *outer_function_chain;
/* List of insns that were postponed by purge_addressof_1. */
static rtx postponed_insns;

View File

@ -519,6 +519,9 @@ struct function GTY(())
/* The function currently being compiled. */
extern GTY(()) struct function *cfun;
/* Pointer to chain of `struct function' for containing functions. */
extern GTY(()) struct function *outer_function_chain;
/* Nonzero if we've already converted virtual regs to hard regs. */
extern int virtuals_instantiated;