diff options
author | Alan Modra <amodra@gmail.com> | 2009-03-18 11:47:18 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-03-18 11:47:18 +0000 |
commit | 3889c459bbe9826d419b59e6a0fa57aa078122ec (patch) | |
tree | d00d3af9675e7f7851fb9cd53846a9ce595df130 /opcodes/cgen-opc.c | |
parent | 8d25cc3de0a2ca236b8a4a676535d05d2084c149 (diff) | |
download | gdb-3889c459bbe9826d419b59e6a0fa57aa078122ec.zip gdb-3889c459bbe9826d419b59e6a0fa57aa078122ec.tar.gz gdb-3889c459bbe9826d419b59e6a0fa57aa078122ec.tar.bz2 |
bfd/
* vms-hdr.c: Don't include alloca.h.
opcodes/
* cgen-opc.c: Include alloca-conf.h rather than alloca.h.
* Makefile.am: Run "make dep-am".
* Makefile.in: Regenerate.
Diffstat (limited to 'opcodes/cgen-opc.c')
-rw-r--r-- | opcodes/cgen-opc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/opcodes/cgen-opc.c b/opcodes/cgen-opc.c index 9c1e302..7d52284 100644 --- a/opcodes/cgen-opc.c +++ b/opcodes/cgen-opc.c @@ -1,6 +1,6 @@ /* CGEN generic opcode support. - Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2005, 2007 + Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2005, 2007, 2009 Free Software Foundation, Inc. This file is part of libopcodes. @@ -19,6 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ +#include "alloca-conf.h" #include "sysdep.h" #include <stdio.h> #include "ansidecl.h" @@ -28,10 +29,6 @@ #include "symcat.h" #include "opcode/cgen.h" -#ifdef HAVE_ALLOCA_H -#include <alloca.h> -#endif - static unsigned int hash_keyword_name (const CGEN_KEYWORD *, const char *, int); static unsigned int hash_keyword_value |