Re: [PATCH] Bug fix for PR59050

2013-11-11 Thread Cong Hou
Thank you for your advice! I will follow this instruction in future. thanks, Cong On Mon, Nov 11, 2013 at 1:32 AM, Richard Biener wrote: > On Fri, 8 Nov 2013, Cong Hou wrote: > >> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59050 >> >> This is my bad. I forget to check the test result for gfor

Re: [PATCH] Bug fix for PR59050

2013-11-11 Thread Cong Hou
Hi Jeff I have committed the fix. Please update your repo. Thank you! Cong On Mon, Nov 11, 2013 at 10:32 AM, Jeff Law wrote: > On 11/11/13 02:32, Richard Biener wrote: >> >> On Fri, 8 Nov 2013, Cong Hou wrote: >> >>> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59050 >>> >>> This is my bad.

Re: [PATCH] Bug fix for PR59050

2013-11-11 Thread Jeff Law
On 11/11/13 02:32, Richard Biener wrote: On Fri, 8 Nov 2013, Cong Hou wrote: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59050 This is my bad. I forget to check the test result for gfortran. With this patch the bug should be fixed (tested on x86-64). Ok. Btw, requirements are to bootstrap a

Re: [PATCH] Bug fix for PR59050

2013-11-11 Thread Richard Biener
On Fri, 8 Nov 2013, Cong Hou wrote: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59050 > > This is my bad. I forget to check the test result for gfortran. With > this patch the bug should be fixed (tested on x86-64). Ok. Btw, requirements are to bootstrap and test with all default languages en

Re: [PATCH] Bug fix for PR59050

2013-11-08 Thread Cong Hou
Yes, I think so. The bug is that the arguments of tree_int_cst_compare() may not be constant integers. This patch should take care of it. thanks, Cong On Fri, Nov 8, 2013 at 12:06 PM, H.J. Lu wrote: > On Fri, Nov 8, 2013 at 10:34 AM, Cong Hou wrote: >> http://gcc.gnu.org/bugzilla/show_bug.cg

Re: [PATCH] Bug fix for PR59050

2013-11-08 Thread H.J. Lu
On Fri, Nov 8, 2013 at 10:34 AM, Cong Hou wrote: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59050 > > This is my bad. I forget to check the test result for gfortran. With > this patch the bug should be fixed (tested on x86-64). > > > thanks, > Cong > > > diff --git a/gcc/ChangeLog b/gcc/ChangeL

[PATCH] Bug fix for PR59050

2013-11-08 Thread Cong Hou
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59050 This is my bad. I forget to check the test result for gfortran. With this patch the bug should be fixed (tested on x86-64). thanks, Cong diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 90b01f2..e62c672 100644 --- a/gcc/ChangeLog +++ b/gcc/Chan