Re: What version of binutils is required

2021-02-23 Thread Richard Biener via Gcc
On Tue, Feb 23, 2021 at 1:12 AM Gary Oblock via Gcc wrote: > > I'm having a "linker" error (according to Martin Liška) when > compiling a SPEC test (x264_r) with a vendor branch under development (my > optimization is done at LTO time.) > > The binutils on my development machine is the version >

Re: What version of binutils is required

2021-02-23 Thread Martin Liška
On 2/23/21 9:41 AM, Richard Biener via Gcc wrote: On Tue, Feb 23, 2021 at 1:12 AM Gary Oblock via Gcc wrote: I'm having a "linker" error (according to Martin Liška) when compiling a SPEC test (x264_r) with a vendor branch under development (my optimization is done at LTO time.) The binutils

Request for copyright assignment form

2021-02-23 Thread The Other via Gcc
Hi, I would like to get a copyright assignment form for GCC. I believe that https://gcc.gnu.org/contribute.html states that the right place to get such a form is here. Thanks, Theo

RE: problems with memory allocation and the alignment check

2021-02-23 Thread David Laight via Gcc
> > > I just wrote this little program to demonstrate a possible flaw in both > > > malloc and calloc. > > > > > > If I allocate a the simplest memory region from main(), one out of three > > > optimization flags fail. > > > If I allocate the same region from a function, three out of three > > >

Re: Request for copyright assignment form

2021-02-23 Thread David Edelsohn via Gcc
See off list. Thanks, David On Tue, Feb 23, 2021 at 7:08 AM The Other via Gcc wrote: > > Hi, > > I would like to get a copyright assignment form for GCC. I believe that > https://gcc.gnu.org/contribute.html states that the right place to get such a > form is here. > > Thanks, > Theo

Re: GSoC project

2021-02-23 Thread Utkarsh singh via Gcc
Thanks, I'll check it out. On Mon, Feb 22, 2021 at 12:23 PM Ankur Saini wrote: > I think this is what you are looking for > > https://gcc.gnu.org/wiki/SummerOfCode > > > On 22-Feb-2021, at 12:08 PM, Utkarsh singh via Gcc > wrote: > > > > Greeting to the team, > > I am Utkarsh Singh. I was goin

Re: Constraints and branching in -fanalyzer

2021-02-23 Thread brian.sobulefsky via Gcc
I can post it to the patches list with an explanation that it is not a full solution to the PR. I actually put the logic directly into constraint_manager::eval_condition when I was experimenting but I think I will make a new subroutine for you for "folding" constraints. It is not overly complica

Re: What version of binutils is required

2021-02-23 Thread Gary Oblock via Gcc
Fair enough... $ ld -V GNU ld (GNU Binutils for Ubuntu) 2.30 From: Richard Biener Sent: Tuesday, February 23, 2021 12:41 AM To: Gary Oblock Cc: gcc@gcc.gnu.org Subject: Re: What version of binutils is required [EXTERNAL EMAIL NOTICE: This email originated from

Re: problems with memory allocation and the alignment check

2021-02-23 Thread Michael J. Baars
On Mon, 2021-02-22 at 01:41 -0800, Andrew Pinski wrote: > On Mon, Feb 22, 2021 at 1:37 AM Michael J. Baars > wrote: > > On Mon, 2021-02-22 at 01:29 -0800, Andrew Pinski wrote: > > > On Mon, Feb 22, 2021 at 1:17 AM Michael J. Baars > > > wrote: > > > > Hi, > > > > > > > > I just wrote this little