]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (c-pragma.o): Depend on output.h.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 31 Aug 2001 19:27:12 +0000 (19:27 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 31 Aug 2001 19:27:12 +0000 (19:27 +0000)
* 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

gcc/ChangeLog
gcc/Makefile.in
gcc/c-pragma.c
gcc/reorg.c
gcc/unwind-dw2.c

index b176a4d437470812b02fa03bfc3b6fef2c31bac3..f4037caa0baf99bb8ca114d522103fa1e0af243a 100644 (file)
@@ -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
index 90a1834a30f508c8db7c0bdeb849f76297f9cd3e..1c4343d9cb173401809260b4d1e173305bad2055 100644 (file)
@@ -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) \
index 31bb29232b6a43ca77c77e965d4212a65586a0c2..0d1caaff4864b3c694965620c7ad6cec9fc27cd2 100644 (file)
@@ -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)
index 879841e2ffbdec92bf36317e1ae00084da00654c..5cff4b36b73d89f2d6d7ca205fe824d245c1b5c8 100644 (file)
@@ -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
index 2160c76d62f5dc54404ca16794da9815995cf6f5..d4ef6981fe7d6df472c0e8455e16ce826487545d 100644 (file)
@@ -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;