1 /* tc-i370.h -- Header file for tc-i370.c.
2 Copyright 1994, 1995, 1996, 1997, 1998, 2000, 2001
3 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor, Cygnus Support.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #ifdef ANSI_PROTOTYPES
29 /* Set the endianness we are using. Default to big endian. */
30 #ifndef TARGET_BYTES_BIG_ENDIAN
31 #define TARGET_BYTES_BIG_ENDIAN 1
35 #error I370 support requires BFD_ASSEMBLER
38 /* The target BFD architecture. */
39 #define TARGET_ARCH (i370_arch ())
40 extern enum bfd_architecture i370_arch
PARAMS ((void));
42 /* Whether or not the target is big endian */
43 extern int target_big_endian
;
45 /* The target BFD format. */
47 #define TARGET_FORMAT ("elf32-i370")
50 /* Permit temporary numeric labels. */
51 #define LOCAL_LABELS_FB 1
53 /* $ is used to refer to the current location. */
54 /* #define DOLLAR_DOT */
57 #define DIFF_EXPR_OK /* foo-. gets turned into PC relative relocs */
60 /* We don't need to handle .word strangely. */
61 #define WORKING_DOT_WORD
63 /* Call md_pcrel_from_section, not md_pcrel_from. */
64 #define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section(FIXP, SEC)
65 extern long md_pcrel_from_section
PARAMS ((struct fix
*, segT
));