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
This commit is contained in:
parent
fe3e667fb4
commit
78b411667a
@ -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
|
||||
|
@ -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) \
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user