diff mbox series

[ft32,committed] Remove semicolon after ASM_OUTPUT_ADDR_VEC_ELT

Message ID 559b96f6-174d-e4f3-17d8-3fb694686c2d@mentor.com
State New
Headers show
Series [ft32,committed] Remove semicolon after ASM_OUTPUT_ADDR_VEC_ELT | expand

Commit Message

Tom de Vries Nov. 23, 2017, 7:35 p.m. UTC
Hi,

This removes a semicolon after the ft32 version of 
ASM_OUTPUT_ADDR_VEC_ELT. This allows the macro to be used in 
if-then-elses without curly braces.

Build for ft32.

Committed as obvious.

Thanks,
- Tom
diff mbox series

Patch

[ft32] Remove semicolon after ASM_OUTPUT_ADDR_VEC_ELT

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

	* config/ft32/ft32.h (ASM_OUTPUT_ADDR_VEC_ELT): Remove semicolon after
	macro.

---
 gcc/config/ft32/ft32.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/ft32/ft32.h b/gcc/config/ft32/ft32.h
index b276f25..c32db40 100644
--- a/gcc/config/ft32/ft32.h
+++ b/gcc/config/ft32/ft32.h
@@ -205,7 +205,7 @@  enum reg_class
 /* This is how to output an element of a case-vector that is absolute.  */
 
 #define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE)  \
-    fprintf (FILE, "\t.long\t.L%d\n", VALUE);				\
+    fprintf (FILE, "\t.long\t.L%d\n", VALUE)				\
 
 /* Passing Arguments in Registers */