diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-08-31 19:27:12 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-08-31 19:27:12 +0000 |
commit | 78b411667a29f42bce0465466b017d06d3091f5b (patch) | |
tree | 0db1d11a3da6c61db5aeaafce7b4acc0a02566e7 /gcc | |
parent | fe3e667fb42a7ebf483437373ad4426884eaf6af (diff) | |
download | gcc-78b411667a29f42bce0465466b017d06d3091f5b.zip gcc-78b411667a29f42bce0465466b017d06d3091f5b.tar.gz gcc-78b411667a29f42bce0465466b017d06d3091f5b.tar.bz2 |
Makefile.in (c-pragma.o): Depend on output.h.
* Makefile.in (c-pragma.o): Depend on output.h.
(reorg.o): Depend on except.h.
* c-pragma.c: Include output.h.
* reorg.c: Include except.h.
* unwind-dw2.c: Call __builtin_alloca, not alloca.
From-SVN: r45331
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 | ||||
-rw-r--r-- | gcc/c-pragma.c | 1 | ||||
-rw-r--r-- | gcc/reorg.c | 1 | ||||
-rw-r--r-- | gcc/unwind-dw2.c | 2 |
5 files changed, 16 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b176a4d..f4037ca 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2001-08-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Makefile.in (c-pragma.o): Depend on output.h. + (reorg.o): Depend on except.h. + + * c-pragma.c: Include output.h. + + * reorg.c: Include except.h. + + * unwind-dw2.c: Call __builtin_alloca, not alloca. + 2001-08-31 Richard Henderson <rth@redhat.com> * sched-deps.c (add_dependence): Don't elide dependancy if the diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 90a1834..1c4343d 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1180,7 +1180,7 @@ c-aux-info.o : c-aux-info.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \ flags.h toplev.h c-convert.o : c-convert.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h toplev.h c-pragma.o: c-pragma.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) function.h \ - c-pragma.h toplev.h $(GGC_H) $(TM_P_H) + c-pragma.h toplev.h output.h $(GGC_H) $(TM_P_H) mbchar.o: mbchar.c $(CONFIG_H) $(SYSTEM_H) mbchar.h graph.o: graph.c $(CONFIG_H) $(SYSTEM_H) toplev.h flags.h output.h $(RTL_H) \ function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h @@ -1517,7 +1517,7 @@ caller-save.o : caller-save.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h \ $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) function.h \ $(RECOG_H) reload.h $(EXPR_H) toplev.h $(TM_P_H) reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) conditions.h hard-reg-set.h \ - $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(INSN_ATTR_H) \ + $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(INSN_ATTR_H) except.h \ $(RECOG_H) function.h flags.h output.h $(EXPR_H) toplev.h $(PARAMS_H) $(TM_P_H) alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h hard-reg-set.h \ $(BASIC_BLOCK_H) $(REGS_H) toplev.h output.h $(EXPR_H) \ diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index 31bb292..0d1caaf 100644 --- a/gcc/c-pragma.c +++ b/gcc/c-pragma.c @@ -30,6 +30,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "toplev.h" #include "ggc.h" #include "c-lex.h" +#include "output.h" #include "tm_p.h" #define BAD(msgid) do { warning (msgid); return; } while (0) diff --git a/gcc/reorg.c b/gcc/reorg.c index 879841e..5cff4b3 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -138,6 +138,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "obstack.h" #include "insn-attr.h" #include "resource.h" +#include "except.h" #include "params.h" #ifdef DELAY_SLOTS diff --git a/gcc/unwind-dw2.c b/gcc/unwind-dw2.c index 2160c76..d4ef698 100644 --- a/gcc/unwind-dw2.c +++ b/gcc/unwind-dw2.c @@ -778,7 +778,7 @@ execute_cfa_program (const unsigned char *insn_ptr, unused_rs = unused_rs->prev; } else - new_rs = alloca (sizeof (struct frame_state_reg_info)); + new_rs = __builtin_alloca (sizeof (struct frame_state_reg_info)); *new_rs = fs->regs; fs->regs.prev = new_rs; |