OSDN Git Service

2002-04-12 Eric Norum <eric.norum@usask.ca>
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / newsgas.h
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.  */  
4
5 #define USE_GAS
6
7 /* This is the assembler directive to equate two values.  */
8
9 #undef SET_ASM_OP
10 #define SET_ASM_OP    "\t.set\t"
11
12 /* This is how we tell the assembler that a symbol is weak.  */
13
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)
18
19 #include "m68k/news.h"