Re: [PATCH 1/3] score/cpu: Silence ARM and AARCH64 GCC 12 false trigger array warning

2022-06-14 Thread Joel Sherrill
Correct the URL in the commit message and push it. --joel On Mon, Jun 13, 2022 at 8:57 PM Chris Johns wrote: > On 14/6/2022 11:24 am, chr...@rtems.org wrote: > > From: Chris Johns > > > > The false trigger is covered in: > > > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104657 > > This is

Re: [PATCH 1/3] score/cpu: Silence ARM and AARCH64 GCC 12 false trigger array warning

2022-06-13 Thread Chris Johns
On 14/6/2022 11:24 am, chr...@rtems.org wrote: > From: Chris Johns > > The false trigger is covered in: > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104657 This is the link I meant to include .. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99578 I will update commit and push with this

[PATCH 1/3] score/cpu: Silence ARM and AARCH64 GCC 12 false trigger array warning

2022-06-13 Thread chrisj
From: Chris Johns The false trigger is covered in: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104657 GCC 11 and 12 has been patched for constant pointer casts above 4K. This code casts a constant pointer within the first 4K page. As a result the patch disables the warning. Updates #4662 ---