From f3580e4659c20e4f46f180d92f8b8f0211f3d855 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Tue, 26 Jul 2016 00:16:26 -0700 Subject: fix some warnings --- gcc/thumb.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/thumb.h') diff --git a/gcc/thumb.h b/gcc/thumb.h index a271ed7..9911f76 100755 --- a/gcc/thumb.h +++ b/gcc/thumb.h @@ -130,7 +130,7 @@ extern int target_flags; /* This says how to define a local common symbol (ie, not visible to linker). */ -#define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED) \ +#define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE) \ (fprintf((STREAM),"\n\t.lcomm\t"), \ assemble_name((STREAM),(NAME)), \ fprintf((STREAM),",%u\n",(SIZE))) @@ -194,7 +194,7 @@ do { char dstr[30]; \ /* This is how to output a string. */ #define ASM_OUTPUT_ASCII(STREAM, STRING, LEN) \ do { \ - register int i, c, len = (LEN), cur_pos = 17; \ + register int i, len = (LEN), cur_pos = 17; \ register unsigned char *string = (unsigned char *)(STRING); \ fprintf ((STREAM), "\t.ascii\t\""); \ for (i = 0; i < len; i++) \ -- cgit v1.2.3