Add support for a .secrel32 x86 reloc to allow DWARF" debug information to used
[binutils.git] / gas / config / tc-ip2k.h
blob3ce0f5b031d659e95e25706bd99ed687a061e484
1 /* tc-ip2k.h -- Header file for tc-ip2k.c.
2 Copyright (C) 2000, 2002 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #define TC_IP2K
23 #ifndef BFD_ASSEMBLER
24 /* Leading space so will compile with cc. */
25 #error IP2K support requires BFD_ASSEMBLER
26 #endif
28 #define LISTING_HEADER "IP2xxx GAS "
30 /* The target BFD architecture. */
31 #define TARGET_ARCH bfd_arch_ip2k
33 #define TARGET_FORMAT "elf32-ip2k"
35 #define TARGET_BYTES_BIG_ENDIAN 1
37 /* Permit temporary numeric labels. */
38 #define LOCAL_LABELS_FB 1
40 /* .-foo gets turned into PC relative relocs. */
41 #define DIFF_EXPR_OK
43 /* We don't need to handle .word strangely. */
44 #define WORKING_DOT_WORD
46 #define LITERAL_PREFIXDOLLAR_HEX
47 #define LITERAL_PREFIXPERCENT_BIN
48 #define DOUBLESLASH_LINE_COMMENTS
50 /* Values passed to md_apply_fix3 don't include the symbol value. */
51 #define MD_APPLY_SYM_VALUE(FIX) 0
53 #define md_apply_fix3 ip2k_apply_fix3
55 #define TC_HANDLES_FX_DONE
57 /* No shared lib support, so we don't need to ensure externally
58 visible symbols can be overridden. */
59 #define EXTERN_FORCE_RELOC 0
61 #define TC_FORCE_RELOCATION(FIX) ip2k_force_relocation (FIX)
62 extern int ip2k_force_relocation PARAMS ((struct fix *));
64 #define tc_gen_reloc gas_cgen_tc_gen_reloc
66 #define md_elf_section_flags ip2k_elf_section_flags
67 extern int ip2k_elf_section_flags PARAMS ((int, int, int));
69 #define md_operand(x) gas_cgen_md_operand (x)
70 extern void gas_cgen_md_operand PARAMS ((expressionS *));