]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-ip2k.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gas / config / tc-ip2k.h
CommitLineData
a40cbfa3 1/* tc-ip2k.h -- Header file for tc-ip2k.c.
250d07de 2 Copyright (C) 2000-2021 Free Software Foundation, Inc.
a40cbfa3
NC
3
4 This file is part of GAS, the GNU Assembler.
5
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
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
a40cbfa3
NC
9 any later version.
10
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.
15
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
4b4da160
NC
18 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
a40cbfa3
NC
20
21#define TC_IP2K
22
a40cbfa3
NC
23#define LISTING_HEADER "IP2xxx GAS "
24
25/* The target BFD architecture. */
26#define TARGET_ARCH bfd_arch_ip2k
27
28#define TARGET_FORMAT "elf32-ip2k"
29
30#define TARGET_BYTES_BIG_ENDIAN 1
31
32/* Permit temporary numeric labels. */
33#define LOCAL_LABELS_FB 1
34
35/* .-foo gets turned into PC relative relocs. */
36#define DIFF_EXPR_OK
37
38/* We don't need to handle .word strangely. */
39#define WORKING_DOT_WORD
40
a40cbfa3
NC
41#define LITERAL_PREFIXPERCENT_BIN
42#define DOUBLESLASH_LINE_COMMENTS
43
55cf6793 44/* Values passed to md_apply_fix don't include the symbol value. */
a161fe53 45#define MD_APPLY_SYM_VALUE(FIX) 0
a40cbfa3 46
55cf6793 47#define md_apply_fix ip2k_apply_fix
a40cbfa3
NC
48
49#define TC_HANDLES_FX_DONE
50
a161fe53
AM
51/* No shared lib support, so we don't need to ensure externally
52 visible symbols can be overridden. */
53#define EXTERN_FORCE_RELOC 0
54
55#define TC_FORCE_RELOCATION(FIX) ip2k_force_relocation (FIX)
ea1562b3 56extern int ip2k_force_relocation (struct fix *);
a161fe53 57
a40cbfa3
NC
58#define tc_gen_reloc gas_cgen_tc_gen_reloc
59
a161fe53 60#define md_elf_section_flags ip2k_elf_section_flags
01e1a5bc 61extern int ip2k_elf_section_flags (flagword, bfd_vma, int);
a161fe53 62
a40cbfa3 63#define md_operand(x) gas_cgen_md_operand (x)
ea1562b3 64extern void gas_cgen_md_operand (expressionS *);