diff options
author | obrien <obrien@FreeBSD.org> | 2001-11-01 09:24:29 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-11-01 09:24:29 +0000 |
commit | 14771d6bc7b7b3d565489864e6dfa8ecc3940fc5 (patch) | |
tree | f6b7f87e74b800b8b30b12aa6cb092434d708ac4 /contrib/binutils/gas/cgen.h | |
parent | 7734e00828d1a0cbfe8bad4005c310db5ae83187 (diff) | |
download | FreeBSD-src-14771d6bc7b7b3d565489864e6dfa8ecc3940fc5.zip FreeBSD-src-14771d6bc7b7b3d565489864e6dfa8ecc3940fc5.tar.gz |
Halloween import of Binutils from the FSF 2.11 branch.
This fixes some IA-64 related bugs.
Diffstat (limited to 'contrib/binutils/gas/cgen.h')
-rw-r--r-- | contrib/binutils/gas/cgen.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/binutils/gas/cgen.h b/contrib/binutils/gas/cgen.h index 2bc1732..b09ccaa 100644 --- a/contrib/binutils/gas/cgen.h +++ b/contrib/binutils/gas/cgen.h @@ -1,5 +1,5 @@ /* GAS cgen support. - Copyright (C) 1998, 1999 Free Software Foundation, Inc. + Copyright 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -26,7 +26,9 @@ extern CGEN_CPU_DESC gas_cgen_cpu_desc; /* Maximum number of fixups in an insn. If you need to change this, allow target to override and do so there. */ +#ifndef GAS_CGEN_MAX_FIXUPS #define GAS_CGEN_MAX_FIXUPS 3 +#endif /* Struct defining result of gas_cgen_finish_insn. */ typedef struct { @@ -54,7 +56,7 @@ extern void gas_cgen_init_parse PARAMS ((void)); extern void gas_cgen_save_fixups PARAMS ((void)); extern void gas_cgen_restore_fixups PARAMS ((void)); extern void gas_cgen_swap_fixups PARAMS ((void)); - + /* Add a register to the assembler's hash table. This makes lets GAS parse registers for us. ??? This isn't currently used, but it could be in the future. */ |