Module Name:src
Committed By: mrg
Date: Thu Aug 10 20:44:37 UTC 2023
Modified Files:
src/tests/lib/libc/misc: Makefile
Log Message:
make this build with GCC 12.
there are some odd constructs here to trigger sanitizers.
To generate a diff of this commit:
cvs rdiff -u -r1
Module Name:src
Committed By: mrg
Date: Thu Aug 10 20:44:37 UTC 2023
Modified Files:
src/tests/lib/libc/misc: Makefile
Log Message:
make this build with GCC 12.
there are some odd constructs here to trigger sanitizers.
To generate a diff of this commit:
cvs rdiff -u -r1
Module Name:src
Committed By: joerg
Date: Mon Oct 28 18:10:22 UTC 2019
Modified Files:
src/tests/lib/libc/misc: t_ubsan.c
Log Message:
Avoid warnings about tautological left shifts as conditional.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/lib/
Module Name:src
Committed By: joerg
Date: Mon Oct 28 18:10:22 UTC 2019
Modified Files:
src/tests/lib/libc/misc: t_ubsan.c
Log Message:
Avoid warnings about tautological left shifts as conditional.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/lib/
Module Name:src
Committed By: kamil
Date: Thu Aug 15 08:17:32 UTC 2019
Modified Files:
src/tests/lib/libc/misc: Makefile
Log Message:
Fix build of t_ubsan/t_ubsanxx under MKSANITIZER
Do not link micro-ubsan runtime for disabled tests.
This avoids double symbols linked in
Module Name:src
Committed By: kamil
Date: Thu Aug 15 08:17:32 UTC 2019
Modified Files:
src/tests/lib/libc/misc: Makefile
Log Message:
Fix build of t_ubsan/t_ubsanxx under MKSANITIZER
Do not link micro-ubsan runtime for disabled tests.
This avoids double symbols linked in
On 04.02.2019 09:50, Robert Elz wrote:
> Date:Mon, 4 Feb 2019 05:02:46 +0100
> From:Kamil Rytarowski
> Message-ID: <2eadaf71-d7d7-c285-bdec-78ddcd3a5...@gmx.com>
>
>
> | If GCC is fine with it, we could try raise(!!(a * b) ? SIGSEGV : SIGBUS);=
>
> That's a kind o
Date:Mon, 4 Feb 2019 05:02:46 +0100
From:Kamil Rytarowski
Message-ID: <2eadaf71-d7d7-c285-bdec-78ddcd3a5...@gmx.com>
| If GCC is fine with it, we could try raise(!!(a * b) ? SIGSEGV : SIGBUS);=
That's a kind of odd way of saying (a * b) != 0 ? ...
kre
On 04.02.2019 04:10, matthew green wrote:
> Module Name: src
> Committed By: mrg
> Date: Mon Feb 4 03:10:33 UTC 2019
>
> Modified Files:
> src/tests/lib/libc/misc: Makefile t_ubsan.c
>
> Log Message:
> - revert previous to t_ubsan.c, it is desired behaviour. from kamil.
> - use -