gcc/testsuite/ChangeLog:
[official-gcc.git] / gcc / testsuite / c-c++-common / Wrestrict-2.c
blob2c10eeffb515d6573b0a17a295337c7dc4035abf
1 /* PR 35503 - Warn about restricted pointers
2 Test to exercise that -Wrestrict warnings are issued for memory and
3 sring functions when they are declared in system headers (i.e., not
4 just when they are explicitly declared in the source file.)
5 Also verify that the warnings are issued even for calls where the
6 source of the aliasing violation is in a different function than
7 the restricted call.
8 { dg-do compile }
9 { dg-options "-O2 -Wrestrict" } */
11 #include <string.h>
13 static void wrap_memcpy (void *d, const void *s, size_t n)
15 memcpy (d, s, n); /* { dg-warning "source argument is the same as destination" "memcpy" } */
18 void call_memcpy (void *d, size_t n)
20 const void *s = d;
21 wrap_memcpy (d, s, n);
25 static void wrap_strcat (char *d, const char *s)
27 strcat (d, s); /* { dg-warning "source argument is the same as destination" "strcat" } */
30 void call_strcat (char *d)
32 const char *s = d;
33 wrap_strcat (d, s);
37 static void wrap_strcpy (char *d, const char *s)
39 strcpy (d, s); /* { dg-warning "source argument is the same as destination" "strcpy" } */
42 void call_strcpy (char *d)
44 const char *s = d;
45 wrap_strcpy (d, s);
49 static void wrap_strncat (char *d, const char *s, size_t n)
51 strncat (d, s, n); /* { dg-warning "source argument is the same as destination" "strncat" } */
54 void call_strncat (char *d, size_t n)
56 const char *s = d;
57 wrap_strncat (d, s, n);
61 static void wrap_strncpy (char *d, const char *s, size_t n)
63 strncpy (d, s, n); /* { dg-warning "source argument is the same as destination" "strncpy" } */
66 void call_strncpy (char *d, size_t n)
68 const char *s = d;
69 wrap_strncpy (d, s, n);