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/c-pragma.c | |
parent | fe3e667fb42a7ebf483437373ad4426884eaf6af (diff) | |
download | gcc-78b411667a29f42bce0465466b017d06d3091f5b.tar.gz |
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/c-pragma.c')
-rw-r--r-- | gcc/c-pragma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index 31bb29232b6..0d1caaff486 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) |