Module Name: src Committed By: mrg Date: Thu Aug 3 08:16:31 UTC 2023
Modified Files: src/sys/arch/evbarm/gumstix: gumstix_machdep.c src/sys/arch/evbarm/ixm1200: ixm1200_machdep.c src/sys/arch/hpcarm/hpcarm: pxa2x0_hpc_machdep.c sa11x0_hpc_machdep.c src/sys/arch/hppa/stand: Makefile.buildboot src/sys/arch/m68k/m68k: regdump.c src/sys/arch/macppc/macppc: cpu.c Log Message: ignore "-Warray-bounds" for various low level platform code that knows how something is setup but technically is undefined behaviour. the most common here is "extern int end;" and then using offsets of "&end" that are outside the bounds of this 4-byte integer. these uses are almost certainly all OK in reality. found by GCC 12. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.74 src/sys/arch/evbarm/gumstix/gumstix_machdep.c cvs rdiff -u -r1.67 -r1.68 src/sys/arch/evbarm/ixm1200/ixm1200_machdep.c cvs rdiff -u -r1.31 -r1.32 src/sys/arch/hpcarm/hpcarm/pxa2x0_hpc_machdep.c cvs rdiff -u -r1.22 -r1.23 src/sys/arch/hpcarm/hpcarm/sa11x0_hpc_machdep.c cvs rdiff -u -r1.6 -r1.7 src/sys/arch/hppa/stand/Makefile.buildboot cvs rdiff -u -r1.14 -r1.15 src/sys/arch/m68k/m68k/regdump.c cvs rdiff -u -r1.72 -r1.73 src/sys/arch/macppc/macppc/cpu.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.