Commit 079a7948 by Richard Stallman

(ASM_OUTPUT_CASE_LABEL): Fixed definition to use

ASM_OUTPUT_ALIGN and ASM_OUTPUT_INTERNAL_LABEL.

From-SVN: r1408
parent 0631fb17
...@@ -1055,8 +1055,11 @@ struct cumulative_args { int ints, floats; }; ...@@ -1055,8 +1055,11 @@ struct cumulative_args { int ints, floats; };
/* This is how to output an internal numbered label which /* This is how to output an internal numbered label which
labels a jump table. */ labels a jump table. */
#define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,JUMPTABLE) \ #undef ASM_OUTPUT_CASE_LABEL
fprintf (FILE, "\t.align\t4\n.%s%d:\n", PREFIX, NUM) #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. */ /* Output at the end of a jump table. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment