Re: [PATCH][PUSHED] hwasan: support new dg-output format.

2025-03-27 Thread Mike Stump
On Mar 20, 2025, at 8:11 AM, Alex Coplan wrote: > On 09/02/2024 15:32, Alex Coplan wrote: >> On 04/05/2022 09:59, Martin Liška wrote: >>> Supports change in libsanitizer where it newly reports: >>> READ of size 4 at 0xc3d4 tags: 02/01(00) (ptr/mem) in thread T0 >>> >>> So the 'tags' conta

Re: [PATCH][PUSHED] hwasan: support new dg-output format.

2025-03-20 Thread Alex Coplan
On 09/02/2024 15:32, Alex Coplan wrote: > Hi, > > On 04/05/2022 09:59, Martin Liška wrote: > > Supports change in libsanitizer where it newly reports: > > READ of size 4 at 0xc3d4 tags: 02/01(00) (ptr/mem) in thread T0 > > > > So the 'tags' contains now 3 entries compared to 2 entries. >

Re: [PATCH][PUSHED] hwasan: support new dg-output format.

2024-02-09 Thread Alex Coplan
Hi, On 04/05/2022 09:59, Martin Liška wrote: > Supports change in libsanitizer where it newly reports: > READ of size 4 at 0xc3d4 tags: 02/01(00) (ptr/mem) in thread T0 > > So the 'tags' contains now 3 entries compared to 2 entries. > > gcc/testsuite/ChangeLog: > > * c-c++-common/

[PATCH][PUSHED] hwasan: support new dg-output format.

2022-05-04 Thread Martin Liška
Supports change in libsanitizer where it newly reports: READ of size 4 at 0xc3d4 tags: 02/01(00) (ptr/mem) in thread T0 So the 'tags' contains now 3 entries compared to 2 entries. gcc/testsuite/ChangeLog: * c-c++-common/hwasan/alloca-outside-caught.c: Update dg-output. *