diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-16 20:56:26 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-16 20:56:26 +0000 |
commit | 2c31e123f2abb86e5168982738c23b51579223b5 (patch) | |
tree | 423fc6775c7ccac51cc7e6f90dbd0031273373ea | |
parent | 8bf9ccb249cb98e1cabe93c085a946bc00ebb425 (diff) | |
download | gcc-2c31e123f2abb86e5168982738c23b51579223b5.zip gcc-2c31e123f2abb86e5168982738c23b51579223b5.tar.gz gcc-2c31e123f2abb86e5168982738c23b51579223b5.tar.bz2 |
(ASM_OUTPUT_CASE_END): Deleted.
From-SVN: r1597
-rw-r--r-- | gcc/config/m68k/mot3300.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/config/m68k/mot3300.h b/gcc/config/m68k/mot3300.h index beadb72..f1b620c 100644 --- a/gcc/config/m68k/mot3300.h +++ b/gcc/config/m68k/mot3300.h @@ -632,10 +632,14 @@ do { union { float f; long l;} tem; \ fprintf (FILE, "\tswbeg &%d\n%s%%%d:\n", \ XVECLEN (PATTERN (TABLE), 1), (PREFIX), (NUM)) +#if 0 /* At end of a switch table, define LD%n iff the symbol LI%n was defined. */ #define ASM_OUTPUT_CASE_END(FILE,NUM,TABLE) \ - if (switch_table_difference_label_flag) \ - fprintf (FILE, "\tset LD%%%d,L%%%d-LI%%%d\n", (NUM), (NUM), (NUM)) +{ if (switch_table_difference_label_flag) \ + asm_fprintf (FILE, "\t%s %LLD%d,%LL%d-%LLI%d-2.b\n",\ + SET_ASM_OP, (NUM), (NUM), (NUM)) \ + switch_table_difference_label_flag = 0; } +#endif /* Translate some opcodes to fit the sysV68 assembler syntax. */ /* The opcodes fdmov and fsmov are guesses. */ |