Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / c-c++-common / Warray-bounds-4.c
blob7a39b23388aa7a0b107fe940691e4bf274e1b4cd
1 /* Exercise that -Warray-bounds is issued for out-of-bounds offsets
2 in calls to built-in functions.
3 { dg-do compile }
4 { dg-options "-O2 -Warray-bounds=2 -Wno-stringop-overflow -ftrack-macro-expansion=0" } */
6 #include "../gcc.dg/range.h"
8 #if __cplusplus
9 # define restrict __restrict
10 extern "C" {
11 #endif
13 extern void* memcpy (void* restrict, const void* restrict, size_t);
14 extern void* mempcpy (void* restrict, const void* restrict, size_t);
15 extern void* memmove (void*, const void*, size_t);
17 extern char* stpcpy (char* restrict, const char* restrict);
19 extern char* strcat (char* restrict, const char* restrict);
20 extern char* strcpy (char* restrict, const char* restrict);
21 extern char* strncpy (char* restrict, const char* restrict, size_t);
23 #if __cplusplus
24 } /* extern "C" */
25 #endif
27 struct MA { char a5[5], a7[7]; };
29 void sink (void*, ...);
31 void test_memcpy_bounds_memarray_range (void)
33 #undef TM
34 #define TM(mem, dst, src, n) \
35 do { \
36 struct MA ma; \
37 sink (&ma); /* Initialize arrays. */ \
38 memcpy (dst, src, n); \
39 sink (&ma); \
40 } while (0)
42 ptrdiff_t j = SR (1, 2);
44 TM (ma.a5, ma.a5 + j, ma.a5, 1);
45 TM (ma.a5, ma.a5 + j, ma.a5, 3);
46 TM (ma.a5, ma.a5 + j, ma.a5, 5);
47 TM (ma.a5, ma.a5 + j, ma.a5, 7); /* { dg-warning "offset \\\[6, 8] from the object at .ma. is out of the bounds of referenced subobject .\(MA::\)?a5. with type .char ?\\\[5]. at offset 0" } */
48 TM (ma.a5, ma.a5 + j, ma.a5, 9); /* { dg-warning "offset \\\[6, 10] from the object at .ma. is out of the bounds of referenced subobject .\(MA::\)?a5. with type .char ?\\\[5]. at offset 0" } */
51 void test_strcpy_bounds_memarray_range (void)
53 #undef TM
54 #define TM(a5init, a7init, dst, src) \
55 do { \
56 struct MA ma = { a5init, a7init }; \
57 strcpy (dst, src); \
58 sink (&ma); \
59 } while (0)
61 ptrdiff_t i = SR (1, 2);
63 TM ("0", "", ma.a5 + i, ma.a5);
64 TM ("01", "", ma.a5 + i, ma.a5);
65 TM ("012", "", ma.a5 + i, ma.a5);
66 TM ("0123", "", ma.a5 + i, ma.a5); /* { dg-warning "offset 6 from the object at .ma. is out of the bounds of referenced subobject .a5. with type .char\\\[5]. at offset 0" "strcpy" { xfail *-*-* } } */
68 #if __i386__ || __x86_64__
69 /* Disabled for non-x86 targets due to bug 83462. */
70 TM ("", "012345", ma.a7 + i, ma.a7); /* { dg-warning "offset 13 from the object at .ma. is out of the bounds of referenced subobject .\(MA::\)?a7. with type .char ?\\\[7]. at offset 5" "strcpy" { xfail { ! { i?86-*-* x86_64-*-* } } } } */
71 #endif