https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109350
Bug ID: 109350 Summary: FAIL: g++.dg/warn/Wstringop-overflow-4.C Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: rguenth at gcc dot gnu.org Target Milestone: --- The T (S (2), new int16_t[r_imin_imax + 1]); // { dg-bogus "into a region of size" "pr106120" { xfail { ilp32 && c++98_only } } } subtest now FAILs. Reduced testcase: #include "../../gcc.dg/range.h" #define INT_MAX __INT_MAX__ #define INT_MIN (-INT_MAX - 1) extern "C" char* strcpy (char*, const char*); void sink (void*); #define S36 "0123456789abcdefghijklmnopqrstuvwxyz" #define S(N) (S36 + sizeof S36 - N - 1) #define T(src, alloc) do { \ const char *s = src; \ char *d = (char*)alloc; \ strcpy (d, s); \ sink (d); \ } while (0) #ifdef __INT16_TYPE__ // Hack around PR 92829. #define XUR(min, max) \ (++idx, (vals[idx] < min || max < vals[idx] ? min : vals[idx])) typedef __INT16_TYPE__ int16_t; void test_strcpy_new_int16_t (size_t n, const size_t vals[]) { size_t idx = 0; int r_imin_imax = SR (INT_MIN, INT_MAX); T (S (1), new int16_t[r_imin_imax]); T (S (2), new int16_t[r_imin_imax + 1]); // { dg-bogus "into a region of size" "pr106120" { xfail { ilp32 && c++98_only } } } T (S (9), new int16_t[r_imin_imax * 2 + 1]); }