diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-27 21:26:48 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-27 21:26:48 +0000 |
commit | 59abce4c6b4db56857589158bac073df61fd71e2 (patch) | |
tree | 1256132103cb3a7fcb7f888824cc85f5e568949f | |
parent | 87c06c0d81aa4bf96a83d1bb8ea4946a25ac318f (diff) | |
download | gcc-59abce4c6b4db56857589158bac073df61fd71e2.zip gcc-59abce4c6b4db56857589158bac073df61fd71e2.tar.gz gcc-59abce4c6b4db56857589158bac073df61fd71e2.tar.bz2 |
entered into RCS
From-SVN: r598
-rw-r--r-- | gcc/config/m68k/dpx2g.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gcc/config/m68k/dpx2g.h b/gcc/config/m68k/dpx2g.h new file mode 100644 index 0000000..fd4024b --- /dev/null +++ b/gcc/config/m68k/dpx2g.h @@ -0,0 +1,42 @@ +/* + * dpx2g.h - Bull DPX/2 200 and 300 systems (m68k, SysVr3) with gas + * + * $Id: dpx2g.h,v 1.1 1992/03/11 04:21:58 sjg Exp sjg $ + */ + +#define USE_GAS +#include "dpx2.h" + + +/* GAS want's DBX debugging information. */ +#undef SDB_DEBUGGING_INFO +#ifndef DBX_DEBUGGING_INFO +#define DBX_DEBUGGING_INFO +#endif + +/* + * we are using GAS + */ +#undef EXTRA_SECTION_FUNCTIONS +#undef EXTRA_SECTIONS + +/* + * put const's in the text section + */ +#define const_section() text_section() +#define fini_section() while (0) + +#if 0 /* this is fixed in 2.1 */ +#undef ASM_OUTPUT_ALIGN +#define ASM_OUTPUT_ALIGN(FILE,LOG) \ + if ((LOG) >= 1) \ + fprintf (FILE, "\t.even\n"); +#endif + +#undef CTORS_SECTION_ASM_OP +#define CTORS_SECTION_ASM_OP "\t.data" +#undef DTORS_SECTION_ASM_OP +#define DTORS_SECTION_ASM_OP "\t.data" +#undef INIT_SECTION_ASM_OP + +/* end of dpx2g.h */ |