* coff-arm.c (TARGET_LITTLE_SYM, TARGET_BIG_SYM): Replaces TARGET_SYM.
[deliverable/binutils-gdb.git] / gas / emul.h
CommitLineData
e7757ad0
KR
1#ifndef EMUL_DEFS
2#define EMUL_DEFS
3
4struct emulation {
5 void (*match) PARAMS ((const char *));
6 const char *name;
7 void (*init) ();
8 const char *(*bfd_name) ();
9 unsigned char local_labels_fb : 1;
10 unsigned char local_labels_dollar : 1;
11 unsigned char leading_underscore : 2;
12 unsigned char strip_underscore : 1;
13 unsigned char default_endian : 2;
14 const char *fake_label_name;
15 const struct format_ops *format;
16};
17
18COMMON struct emulation *this_emulation;
19
20extern const char *default_emul_bfd_name ();
21extern void common_emul_init ();
22
23#endif
This page took 0.02807 seconds and 4 git commands to generate.