Initial revision
[official-gcc.git] / gcc / config / m68k / newsgas.h
blob8dc7801ea60f2ccac03173b1648b35972f0a61c9
1 /* In Sony versions before 3.0, use the GNU Assembler, because the
2 system's assembler has no way to assemble the difference of two
3 labels for the displacement in a switch-dispatch instruction. */
5 #define USE_GAS
7 /* This is the assembler directive to equate two values. */
9 #undef SET_ASM_OP
10 #define SET_ASM_OP ".set"
12 /* This is how we tell the assembler that a symbol is weak. */
14 #undef ASM_WEAKEN_LABEL
15 #define ASM_WEAKEN_LABEL(FILE,NAME) \
16 do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \
17 fputc ('\n', FILE); } while (0)
19 #include "m68k/news.h"