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
9 { dg-options "-O2 -Wrestrict" } */
13 static void wrap_memcpy (void *d
, const void *s
, size_t n
)
15 memcpy (d
, s
, n
); /* { dg-warning "accessing 2 bytes at offsets 0 and 1 overlaps 1 byte at offset 1" "memcpy" } */
18 void call_memcpy (char *d
)
20 const void *s
= d
+ 1;
21 wrap_memcpy (d
, s
, 2);
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
)
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
)
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
)
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
)
69 wrap_strncpy (d
, s
, n
);