From: Richard Stallman Date: Fri, 3 Jul 1992 20:34:33 +0000 (+0000) Subject: (ASM_OUTPUT_CASE_LABEL): Fixed definition to use X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=079a79484f39ac58e8890d59b071ccff24f4dffe;p=gcc.git (ASM_OUTPUT_CASE_LABEL): Fixed definition to use ASM_OUTPUT_ALIGN and ASM_OUTPUT_INTERNAL_LABEL. From-SVN: r1408 --- diff --git a/gcc/config/i860/i860.h b/gcc/config/i860/i860.h index 3ebcf70a6f9..3c526133b9c 100644 --- a/gcc/config/i860/i860.h +++ b/gcc/config/i860/i860.h @@ -1055,8 +1055,11 @@ struct cumulative_args { int ints, floats; }; /* This is how to output an internal numbered label which labels a jump table. */ -#define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,JUMPTABLE) \ - fprintf (FILE, "\t.align\t4\n.%s%d:\n", PREFIX, NUM) +#undef ASM_OUTPUT_CASE_LABEL +#define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \ +do { ASM_OUTPUT_ALIGN ((FILE), 2); \ + ASM_OUTPUT_INTERNAL_LABEL ((FILE), PREFIX, NUM); \ + } while (0) /* Output at the end of a jump table. */