Wed Jan 29 15:31:12 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
[deliverable/binutils-gdb.git] / gas / config / tc-d10v.h
CommitLineData
7be9a312
MH
1/* tc-d10v.h -- Header file for tc-d10v.c.
2 Copyright (C) 1996 Free Software Foundation, Inc.
3 Written by Martin Hunt, Cygnus Support.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21#define TC_D10V
22
23#ifndef BFD_ASSEMBLER
24 #error D10V support requires BFD_ASSEMBLER
25#endif
26
27/* The target BFD architecture. */
28#define TARGET_ARCH bfd_arch_d10v
29
30#define TARGET_FORMAT "elf32-d10v"
31
32#define MD_APPLY_FIX3
7be9a312
MH
33
34/* call md_pcrel_from_section, not md_pcrel_from */
35#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section(FIXP, SEC)
36
37/* Permit temporary numeric labels. */
38#define LOCAL_LABELS_FB 1
39
40#define LOCAL_LABEL(name) (name[0] == '.' \
41 && (name[1] == 'L' || name[1] == '.'))
42#define FAKE_LABEL_NAME ".L0\001"
43#define DIFF_EXPR_OK /* .-foo gets turned into PC relative relocs */
44
45/* We don't need to handle .word strangely. */
46#define WORKING_DOT_WORD
47
7be9a312
MH
48#define md_number_to_chars number_to_chars_bigendian
49
0ef32559
MH
50int d10v_cleanup PARAMS ((void));
51#define md_after_pass_hook() d10v_cleanup()
daa04fa2
MH
52#define md_cleanup() d10v_cleanup()
53#define md_do_align(a,b,c,d) d10v_cleanup()
0ef32559 54#define TC_START_LABEL(ch, ptr) (ch == ':' && d10v_cleanup())
7be9a312
MH
55
56
This page took 0.039374 seconds and 4 git commands to generate.