summaryrefslogtreecommitdiff
path: root/contrib/binutils/gas/emul.h
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-04-18 02:42:13 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-04-18 02:42:13 +0000
commit250e7c04cd108375c2bc4e6657a3d660ecc4f10c (patch)
treeffc0692c3d95a48643d48abc64d13f425186d5c0 /contrib/binutils/gas/emul.h
parentbf5476a7568284207ef150fa66e60173e5fd7c2b (diff)
Notes
Diffstat (limited to 'contrib/binutils/gas/emul.h')
-rw-r--r--contrib/binutils/gas/emul.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/contrib/binutils/gas/emul.h b/contrib/binutils/gas/emul.h
deleted file mode 100644
index 97c46d8b2a5e..000000000000
--- a/contrib/binutils/gas/emul.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef EMUL_DEFS
-#define EMUL_DEFS
-
-struct emulation {
- void (*match) PARAMS ((const char *));
- const char *name;
- void (*init) PARAMS ((void));
- const char *(*bfd_name) PARAMS ((void));
- unsigned local_labels_fb : 1;
- unsigned local_labels_dollar : 1;
- unsigned leading_underscore : 2;
- unsigned strip_underscore : 1;
- unsigned default_endian : 2;
- const char *fake_label_name;
- const struct format_ops *format;
-};
-
-COMMON struct emulation *this_emulation;
-
-extern const char *default_emul_bfd_name PARAMS ((void));
-extern void common_emul_init PARAMS ((void));
-
-#endif