diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-11-13 14:12:02 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-11-13 09:12:02 -0500 |
commit | 1d974ca723f9be828c76c61098fe7754d2f65dca (patch) | |
tree | d5a9d20649cdaf1eb1cd6257d33ec4fddaa1f130 /gcc/explow.c | |
parent | 34e81b5a0fc58ec481f82ad985b449e344c0206c (diff) | |
download | gcc-1d974ca723f9be828c76c61098fe7754d2f65dca.zip gcc-1d974ca723f9be828c76c61098fe7754d2f65dca.tar.gz gcc-1d974ca723f9be828c76c61098fe7754d2f65dca.tar.bz2 |
Makefile.in (explow.o): Now depends on ggc.h.
* Makefile.in (explow.o): Now depends on ggc.h.
* explow.c (ggc.h): Include.
(set_stack_check_libfunc): Mark stack_check_libfunc as ggc root.
From-SVN: r46985
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 874713f..358d7ca 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -32,6 +32,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "optabs.h" #include "hard-reg-set.h" #include "insn-config.h" +#include "ggc.h" #include "recog.h" static rtx break_out_memory_refs PARAMS ((rtx)); @@ -1416,6 +1417,7 @@ 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. */ |