diff options
author | Geoffrey Keating <geoffk@redhat.com> | 2002-06-04 07:11:05 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2002-06-04 07:11:05 +0000 |
commit | e2500fedef1a1c5b9e818fd1e2c281adff80df4a (patch) | |
tree | 720630adca0f6b357e05c4feb8cbe33d556925ce /gcc/explow.c | |
parent | c2ae66169b8326bbf9b1dfa63083d2560fea7ddf (diff) | |
download | gcc-e2500fedef1a1c5b9e818fd1e2c281adff80df4a.zip gcc-e2500fedef1a1c5b9e818fd1e2c281adff80df4a.tar.gz gcc-e2500fedef1a1c5b9e818fd1e2c281adff80df4a.tar.bz2 |
Merge from pch-branch up to tag pch-commit-20020603.
From-SVN: r54232
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 fb1c2a0..2846636 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" + |