public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Fixed up missing semicolons.
@ 2016-09-23 15:42 lhmouse
  2016-09-26 16:19 ` Jeff Law
  0 siblings, 1 reply; 4+ messages in thread
From: lhmouse @ 2016-09-23 15:42 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 1522 bytes --]

Hi GCC developers,
Today I was trying bootstrapping GCC 7.0.0 and stage 1 compilation
failed because of two missing semicolons. After this patch was applied,
xgcc could be built successfully, although it still failed the self-test.
 				
--------------
Best regards,
lh_mouse
2016-09-23



From 1133ae49102751b24cfd0368986a63f482afe8d0 Mon Sep 17 00:00:00 2001
From: lhmouse <lh_mouse@126.com>
Date: Fri, 23 Sep 2016 19:11:03 +0800
Subject: [PATCH] Fixed up missing semicolons.

Signed-off-by: lhmouse <lh_mouse@126.com>
---
 gcc/config/i386/cygming.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h
index 60e11b4..1d9675e 100644
--- a/gcc/config/i386/cygming.h
+++ b/gcc/config/i386/cygming.h
@@ -111,7 +111,7 @@ along with GCC; see the file COPYING3.  If not see
 	assemble_name (FILE, LABEL);				\
 	if ((OFFSET) != 0)					\
 	  fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC,		\
-		   (HOST_WIDE_INT) (OFFSET))			\
+		   (HOST_WIDE_INT) (OFFSET));			\
 	break;							\
       case 8:							\
 	/* This is a hack.  There is no 64-bit section relative	\
@@ -123,7 +123,7 @@ along with GCC; see the file COPYING3.  If not see
 	assemble_name (FILE, LABEL);				\
 	if ((OFFSET) != 0)					\
 	  fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC,		\
-		   (HOST_WIDE_INT) (OFFSET))			\
+		   (HOST_WIDE_INT) (OFFSET));			\
 	fputs ("\n\t.long\t0", FILE);				\
 	break;							\
       default:							\
-- 
2.9.1

[-- Attachment #2: 0016-master-Fixed-up-missing-semicolons.patch --]
[-- Type: application/octet-stream, Size: 1187 bytes --]

From 1133ae49102751b24cfd0368986a63f482afe8d0 Mon Sep 17 00:00:00 2001
From: lhmouse <lh_mouse@126.com>
Date: Fri, 23 Sep 2016 19:11:03 +0800
Subject: [PATCH] Fixed up missing semicolons.

Signed-off-by: lhmouse <lh_mouse@126.com>
---
 gcc/config/i386/cygming.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/config/i386/cygming.h b/gcc/config/i386/cygming.h
index 60e11b4..1d9675e 100644
--- a/gcc/config/i386/cygming.h
+++ b/gcc/config/i386/cygming.h
@@ -111,7 +111,7 @@ along with GCC; see the file COPYING3.  If not see
 	assemble_name (FILE, LABEL);				\
 	if ((OFFSET) != 0)					\
 	  fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC,		\
-		   (HOST_WIDE_INT) (OFFSET))			\
+		   (HOST_WIDE_INT) (OFFSET));			\
 	break;							\
       case 8:							\
 	/* This is a hack.  There is no 64-bit section relative	\
@@ -123,7 +123,7 @@ along with GCC; see the file COPYING3.  If not see
 	assemble_name (FILE, LABEL);				\
 	if ((OFFSET) != 0)					\
 	  fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC,		\
-		   (HOST_WIDE_INT) (OFFSET))			\
+		   (HOST_WIDE_INT) (OFFSET));			\
 	fputs ("\n\t.long\t0", FILE);				\
 	break;							\
       default:							\
-- 
2.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fixed up missing semicolons.
  2016-09-23 15:42 [PATCH] Fixed up missing semicolons lhmouse
@ 2016-09-26 16:19 ` Jeff Law
  2016-09-27  5:37   ` lhmouse
       [not found]   ` <3dfcb73b.f9643.157693af2ed.Coremail.lh_mouse@126.com>
  0 siblings, 2 replies; 4+ messages in thread
From: Jeff Law @ 2016-09-26 16:19 UTC (permalink / raw)
  To: lhmouse, gcc-patches

On 09/23/2016 09:28 AM, lhmouse wrote:
> Hi GCC developers,
> Today I was trying bootstrapping GCC 7.0.0 and stage 1 compilation
> failed because of two missing semicolons. After this patch was applied,
> xgcc could be built successfully, although it still failed the self-test.
>  				
> --------------
> Best regards,
> lh_mouse
> 2016-09-23
>
>
>
> From 1133ae49102751b24cfd0368986a63f482afe8d0 Mon Sep 17 00:00:00 2001
> From: lhmouse <lh_mouse@126.com>
> Date: Fri, 23 Sep 2016 19:11:03 +0800
> Subject: [PATCH] Fixed up missing semicolons.
Thanks.  I've applied this to the trunk.

I don't have your full name for the ChangeLog entry.  If you want to 
pass that along, I'll fix it retroactively.

jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re:  Re: [PATCH] Fixed up missing semicolons.
  2016-09-26 16:19 ` Jeff Law
@ 2016-09-27  5:37   ` lhmouse
       [not found]   ` <3dfcb73b.f9643.157693af2ed.Coremail.lh_mouse@126.com>
  1 sibling, 0 replies; 4+ messages in thread
From: lhmouse @ 2016-09-27  5:37 UTC (permalink / raw)
  To: Jeff Law, gcc-patches

In case my previous mail is swallowed by mailman:

I am not familiar with your convention. Elsewhere, I usually
don't use my full name. If people suggest I use a full name
when submitting patches, I am glad to go with that.

My name is Liu Hao (LH for short). The word 'Mouse' is
a homophony joke in Chinese and does not mean anything
significant.

------------------				 
Best regards,
lh_mouse
2016-09-27

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Fixed up missing semicolons.
       [not found]   ` <3dfcb73b.f9643.157693af2ed.Coremail.lh_mouse@126.com>
@ 2016-09-28  5:15     ` Jeff Law
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Law @ 2016-09-28  5:15 UTC (permalink / raw)
  To: lhmouse, gcc-patches

On 09/26/2016 07:20 PM, lhmouse wrote:
> My name is Liu Hao. :>
Thanks.  I've updated the ChangeLog entry.
>
> Thanks for your work.
And thanks for the mingw patch -- we're always grateful for any help we 
can get on the lesser used platforms.

Jeff

ps.  Yes, I am law on IRC, but I was away when you tried to reach me.  I 
typically don't ever log off...

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-09-28  4:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-23 15:42 [PATCH] Fixed up missing semicolons lhmouse
2016-09-26 16:19 ` Jeff Law
2016-09-27  5:37   ` lhmouse
     [not found]   ` <3dfcb73b.f9643.157693af2ed.Coremail.lh_mouse@126.com>
2016-09-28  5:15     ` Jeff Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).