diff options
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/cgen-opc.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 3afae31d05..cd9239c28c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2000-12-21 Santeri Paavolainen <santtu@ssh.com> + + * cgen-opc.c: Include alloca.h if HAVE_ALLOCA_H is defined. + 2000-12-16 Nick Clifton <nickc@redhat.com> * Makefile.in: Regenerate. diff --git a/opcodes/cgen-opc.c b/opcodes/cgen-opc.c index bcf0309e17..14936b3d1c 100644 --- a/opcodes/cgen-opc.c +++ b/opcodes/cgen-opc.c @@ -27,6 +27,10 @@ #include "symcat.h" #include "opcode/cgen.h" +#ifdef HAVE_ALLOCA_H +#include <alloca.h> +#endif + static unsigned int hash_keyword_name PARAMS ((const CGEN_KEYWORD *, const char *, int)); static unsigned int hash_keyword_value |