diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 07:11:05 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 07:11:05 +0000 |
commit | 1f3233d13f58417984cb2239d328b65e8d172744 (patch) | |
tree | 720630adca0f6b357e05c4feb8cbe33d556925ce /gcc/explow.c | |
parent | 0dc11899d8781bca1da5f4421327d61890424808 (diff) | |
download | gcc-1f3233d13f58417984cb2239d328b65e8d172744.tar.gz |
Merge from pch-branch up to tag pch-commit-20020603.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54232 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index fb1c2a0388c..2846636ec20 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -1422,14 +1422,13 @@ allocate_dynamic_stack_space (size, target, known_align) run-time routine to call to check the stack, so provide a mechanism for calling that routine. */ -static rtx stack_check_libfunc; +static GTY(()) rtx stack_check_libfunc; void set_stack_check_libfunc (libfunc) rtx libfunc; { stack_check_libfunc = libfunc; - ggc_add_rtx_root (&stack_check_libfunc, 1); } /* Emit one stack probe at ADDRESS, an address within the stack. */ @@ -1684,3 +1683,6 @@ rtx_to_tree_code (code) } return ((int) tcode); } + +#include "gt-explow.h" + |