Commit b59b0914 by Tom de Vries Committed by Tom de Vries

[cr16, powerpcspe, rs6000] Remove semicolon after ASM_OUTPUT_LABELREF macro body

2017-11-12  Tom de Vries  <tom@codesourcery.com>

	* config/cr16/cr16.h (ASM_OUTPUT_LABELREF): Remove semicolon after macro
	body.
	* config/powerpcspe/xcoff.h (ASM_OUTPUT_LABELREF): Same.
	* config/rs6000/xcoff.h (ASM_OUTPUT_LABELREF): Same.
	* defaults.h (ASM_OUTPUT_LABELREF): Same.

From-SVN: r254664
parent 5b883081
2017-11-12 Tom de Vries <tom@codesourcery.com>
* config/cr16/cr16.h (ASM_OUTPUT_LABELREF): Remove semicolon after macro
body.
* config/powerpcspe/xcoff.h (ASM_OUTPUT_LABELREF): Same.
* config/rs6000/xcoff.h (ASM_OUTPUT_LABELREF): Same.
* defaults.h (ASM_OUTPUT_LABELREF): Same.
2017-11-11 Martin Sebor <msebor@redhat.com>
PR c/81117
......@@ -479,7 +479,7 @@ struct cumulative_args
#undef ASM_OUTPUT_LABELREF
#define ASM_OUTPUT_LABELREF(STREAM, NAME) \
asm_fprintf (STREAM, "%U%s", (*targetm.strip_name_encoding) (NAME));
asm_fprintf (STREAM, "%U%s", (*targetm.strip_name_encoding) (NAME))
#define ASM_OUTPUT_SYMBOL_REF(STREAM, SYMBOL) \
do \
......
......@@ -179,7 +179,7 @@
`assemble_name' uses this. */
#define ASM_OUTPUT_LABELREF(FILE,NAME) \
asm_fprintf ((FILE), "%U%s", rs6000_xcoff_strip_dollar (NAME));
asm_fprintf ((FILE), "%U%s", rs6000_xcoff_strip_dollar (NAME))
/* This is how to output an internal label prefix. rs6000.c uses this
when generating traceback tables. */
......
......@@ -179,7 +179,7 @@
`assemble_name' uses this. */
#define ASM_OUTPUT_LABELREF(FILE,NAME) \
asm_fprintf ((FILE), "%U%s", rs6000_xcoff_strip_dollar (NAME));
asm_fprintf ((FILE), "%U%s", rs6000_xcoff_strip_dollar (NAME))
/* This is how to output an internal label prefix. rs6000.c uses this
when generating traceback tables. */
......
......@@ -170,7 +170,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
do { \
fputs (user_label_prefix, (FILE)); \
fputs ((NAME), (FILE)); \
} while (0);
} while (0)
#endif
/* Allow target to print debug info labels specially. This is useful for
......
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