PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / builtin-stringop-chk-9.c
blobb5464c2f06ae5fb4865742cbde74d19497377308
1 /* PR middle-end/82646 - bogus -Wstringop-overflow with -D_FORTIFY_SOURCE=2
2 on strncpy with range to a member array
3 { dg-do compile }
4 { dg-options "-O2 -Wstringop-overflow -ftrack-macro-expansion=0" } */
6 #define bos(p) __builtin_object_size (p, 1)
8 struct S {
9 char a[5];
10 void (*pf)(void);
13 /* Verify that none of the string function calls below triggers a warning. */
15 char* test_stpncpy_const_nowarn (struct S *p)
17 int n = sizeof p->a;
19 return __builtin_stpncpy (p->a, "123456", n);
22 char* test_strncpy_const_nowarn (struct S *p)
24 int n = sizeof p->a;
26 return __builtin_strncpy (p->a, "1234567", n);
29 char* test_stpncpy_chk_const_nowarn (struct S *p)
31 int n = sizeof p->a;
33 return __builtin___stpncpy_chk (p->a, "12345678", n, bos (p->a));
36 char* test_strncpy_chk_const_nowarn (struct S *p)
38 int n = sizeof p->a;
40 return __builtin___strncpy_chk (p->a, "123456789", n, bos (p->a));
44 char* test_stpncpy_range_nowarn (struct S *p, int n)
46 if (n < sizeof p->a)
47 n = sizeof p->a;
49 return __builtin_stpncpy (p->a, "123456", n);
52 char* test_strncpy_range_nowarn (struct S *p, int n)
54 if (n < sizeof p->a)
55 n = sizeof p->a;
57 return __builtin_strncpy (p->a, "1234567", n);
60 char* test_stpncpy_chk_range_nowarn (struct S *p, int n)
62 if (n < sizeof p->a)
63 n = sizeof p->a;
65 return __builtin___stpncpy_chk (p->a, "12345678", n, bos (p->a)); /* { dg-bogus "\\\[-Wstringop-overflow=]" } */
68 char* test_strncpy_chk_range_nowarn (struct S *p, int n)
70 if (n < sizeof p->a)
71 n = sizeof p->a;
73 return __builtin___strncpy_chk (p->a, "123456789", n, bos (p->a)); /* { dg-bogus "\\\[-Wstringop-overflow=]" } */
77 /* Verify that all of the string function calls below trigger a warning. */
79 char* test_stpncpy_const_warn (struct S *p)
81 int n = sizeof p->a;
83 ++n;
85 return __builtin_stpncpy (p->a, "123456", n); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
88 char* test_strncpy_const_warn (struct S *p)
90 int n = sizeof p->a;
92 /* A call to strncpy() with a known string and small bound is folded
93 into memcpy() which defeats the warning in this case since memcpy
94 uses Object Size Type 0, i.e., the largest object that p->a may
95 be a part of. Use a larger bound to get around this here. */
96 n += 11;
98 return __builtin_strncpy (p->a, "1234567", n); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
101 char* test_stpncpy_chk_const_warn (struct S *p)
103 int n = sizeof p->a;
105 ++n;
107 return __builtin___stpncpy_chk (p->a, "12345678", n, bos (p->a)); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
110 char* test_strncpy_chk_const_warn (struct S *p)
112 int n = sizeof p->a;
114 ++n;
116 return __builtin___strncpy_chk (p->a, "123456789", n, bos (p->a)); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
120 char* test_stpncpy_range_warn (struct S *p, int n)
122 if (n < sizeof p->a + 1)
123 n = sizeof p->a + 1;
125 return __builtin_stpncpy (p->a, "123456", n); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
128 char* test_strncpy_range_warn (struct S *p, int n)
130 if (n < sizeof p->a + 1)
131 n = sizeof p->a + 1;
133 return __builtin_strncpy (p->a, "1234567", n); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
136 char* test_stpncpy_chk_range_warn (struct S *p, int n)
138 if (n < sizeof p->a + 1)
139 n = sizeof p->a + 1;
141 return __builtin___stpncpy_chk (p->a, "12345678", n, bos (p->a)); /* { dg-warning "\\\[-Wstringop-overflow=]" } */
144 char* test_strncpy_chk_range_warn (struct S *p, int n)
146 if (n < sizeof p->a + 1)
147 n = sizeof p->a + 1;
149 return __builtin___strncpy_chk (p->a, "123456789", n, bos (p->a)); /* { dg-warning "\\\[-Wstringop-overflow=]" } */