* dwarf.c (read_and_display_attr_value): Handle DW_LANG_Go.
[deliverable/binutils-gdb.git] / gas / config / obj-macho.h
CommitLineData
e57f8c65 1/* Mach-O object file format for gas, the assembler.
a4551119 2 Copyright 2009, 2011 Free Software Foundation, Inc.
e57f8c65
TG
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
8 published by the Free Software Foundation; either version 3,
9 or (at your option) any later version.
10
11 GAS is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14 the 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 the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
20
a4551119
TG
21#ifndef _OBJ_MACH_O_H
22#define _OBJ_MACH_O_H
23
e57f8c65
TG
24/* Tag to validate Mach-O object file format processing */
25#define OBJ_MACH_O 1
26
a4551119
TG
27#include "bfd/mach-o.h"
28
e57f8c65
TG
29#include "targ-cpu.h"
30
31#define OUTPUT_FLAVOR bfd_target_mach_o_flavour
32
a4551119
TG
33/* All our align expressions are power of two. */
34#define USE_ALIGN_PTWO
35
36/* Common symbols can carry alignment information. */
37#ifndef S_SET_ALIGN
38#define S_SET_ALIGN(S,V) do {\
39 bfd_mach_o_asymbol *s = (bfd_mach_o_asymbol *) symbol_get_bfdsym (S);\
40 s->n_desc = (s->n_desc & 0xf0ff) | (((V) & 0x0f) << 8);\
41} while (0)
42#endif
43
e57f8c65
TG
44extern const pseudo_typeS mach_o_pseudo_table[];
45
46#ifndef obj_pop_insert
47#define obj_pop_insert() pop_insert (mach_o_pseudo_table)
48#endif
49
50#define obj_sec_sym_ok_for_reloc(SEC) 1
51
52#define obj_read_begin_hook() {;}
53#define obj_symbol_new_hook(s) {;}
54
55#define EMIT_SECTION_SYMBOLS 0
a4551119
TG
56
57#endif /* _OBJ_MACH_O_H */
This page took 0.126626 seconds and 4 git commands to generate.