diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-07-20 17:45:28 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2000-07-20 17:45:28 +0000 |
commit | 3bcbcc3dcf4c2dafb2f5d7384adf5f5bf4e037f4 (patch) | |
tree | 73e2aac98fc5fe48a5d7dfaf27fcceaee01c6fa6 /gas/config/e-criself.c | |
parent | 1b61cf923010ce608e6266ec9450d6945b6ff325 (diff) | |
download | gdb-3bcbcc3dcf4c2dafb2f5d7384adf5f5bf4e037f4.zip gdb-3bcbcc3dcf4c2dafb2f5d7384adf5f5bf4e037f4.tar.gz gdb-3bcbcc3dcf4c2dafb2f5d7384adf5f5bf4e037f4.tar.bz2 |
* configure.in: Add CRIS support.
* configure: Regenerate.
* Makefile.am: (CPU_TYPES): Add cris.
(CPU_OBJ_VALID) [aout]: Add cris.
(MULTI_CPU_TYPES): Add cris.
(MULTI_CPU_OBJ_VALID) [aout]: Add cris.
[coff]: Only i386 and mips are valid.
(TARGET_CPU_CFILES): Add config/tc-cris.c.
(TARGET_CPU_HFILES): Add config/tc-cris.h.
(MULTI_CFILES): Add config/e-crisaout.c and config/e-criself.c.
Regenerate dependencies.
* Makefile.in: Regenerate.
* aclocal.m4: Regenerate.
* as.c: Declare crisaout, criself.
* config/tc-cris.h, config/tc-cris.c: New.
* config/e-criself.c, config/e-crisaout.c: New.
* po/POTFILES.in, po/gas.pot: Regenerate.
Diffstat (limited to 'gas/config/e-criself.c')
-rw-r--r-- | gas/config/e-criself.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gas/config/e-criself.c b/gas/config/e-criself.c new file mode 100644 index 0000000..e1826a1 --- /dev/null +++ b/gas/config/e-criself.c @@ -0,0 +1,17 @@ +#include "as.h" +#include "emul.h" + +static const char * +criself_bfd_name () +{ + abort (); + return NULL; +} + +#define emul_bfd_name criself_bfd_name +#define emul_format &elf_format_ops + +#define emul_name "criself" +#define emul_struct_name criself +#define emul_default_endian 0 +#include "emul-target.h" |