Re: [patch] Fix array overflow in gcc.dg/vect/no-vfa-vect-depend-2.c

2014-02-18 Thread Jakub Jelinek
On Tue, Feb 18, 2014 at 06:24:17PM -0800, Paul Pluzhnikov wrote: > Jakub, > > On Mon, Feb 10, 2014 at 12:09 AM, Jakub Jelinek wrote: > > On Tue, Feb 04, 2014 at 04:59:14PM -0800, Paul Pluzhnikov wrote: > >> gcc/testsuite/ChangeLog: > >> > >> 2014-02-04 Paul Pluzhnikov > >> > >> * gcc.dg/

Re: [patch] Fix array overflow in gcc.dg/vect/no-vfa-vect-depend-2.c

2014-02-18 Thread Paul Pluzhnikov
Jakub, On Mon, Feb 10, 2014 at 12:09 AM, Jakub Jelinek wrote: > On Tue, Feb 04, 2014 at 04:59:14PM -0800, Paul Pluzhnikov wrote: >> gcc/testsuite/ChangeLog: >> >> 2014-02-04 Paul Pluzhnikov >> >> * gcc.dg/vect/no-vfa-vect-depend-2.c (main1): Fix buffer >> overflow. > > Ok, than

Re: [patch] Fix array overflow in gcc.dg/vect/no-vfa-vect-depend-2.c

2014-02-10 Thread Jakub Jelinek
On Tue, Feb 04, 2014 at 04:59:14PM -0800, Paul Pluzhnikov wrote: > gcc/testsuite/ChangeLog: > > 2014-02-04 Paul Pluzhnikov > > * gcc.dg/vect/no-vfa-vect-depend-2.c (main1): Fix buffer > overflow. Ok, thanks. > --- gcc/testsuite/gcc.dg/vect/no-vfa-vect-depend-2.c (revision 20

Re: [patch] Fix array overflow in gcc.dg/vect/no-vfa-vect-depend-2.c

2014-02-09 Thread Paul Pluzhnikov
Ping? On Tue, Feb 4, 2014 at 5:08 PM, Paul Pluzhnikov wrote: > +cc jakub > > On Tue, Feb 4, 2014 at 4:59 PM, Paul Pluzhnikov > wrote: >> Greetings, >> >> The gcc.dg/vect/no-vfa-vect-depend-2.c failed for us, when linked with >> gold, but not when linked with BFD ld. >> >> The problem appears to

Re: [patch] Fix array overflow in gcc.dg/vect/no-vfa-vect-depend-2.c

2014-02-04 Thread Paul Pluzhnikov
+cc jakub On Tue, Feb 4, 2014 at 4:59 PM, Paul Pluzhnikov wrote: > Greetings, > > The gcc.dg/vect/no-vfa-vect-depend-2.c failed for us, when linked with > gold, but not when linked with BFD ld. > > The problem appears to be off-by-one error causing array out of bounds > access, fixed by attached

[patch] Fix array overflow in gcc.dg/vect/no-vfa-vect-depend-2.c

2014-02-04 Thread Paul Pluzhnikov
Greetings, The gcc.dg/vect/no-vfa-vect-depend-2.c failed for us, when linked with gold, but not when linked with BFD ld. The problem appears to be off-by-one error causing array out of bounds access, fixed by attached patch. OK for trunk? Thanks, gcc/testsuite/ChangeLog: 2014-02-04 Paul Plu