[PATCH] [testsuite] fix array element count

2023-03-15 Thread Alexandre Oliva via Gcc-patches
This test is similar to pr103116-1.c, but instead of writing to 4*COUNT elements of x, it writes to 8*COUNT elements, but the definition of x seems to have been adjusted along with the loop. Fix the array size so that it doesn't scribble over unrelated statically-allocated objects. Regstrapped

Re: [PATCH] [testsuite] fix array element count

2023-03-16 Thread Richard Biener via Gcc-patches
On Wed, 15 Mar 2023, Alexandre Oliva wrote: > > This test is similar to pr103116-1.c, but instead of writing to > 4*COUNT elements of x, it writes to 8*COUNT elements, but the > definition of x seems to have been adjusted along with the loop. Fix > the array size so that it doesn't scribble over