PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / strncpy-fix-1.c
blobb4fd4aa4877a007a546abe65b68e9121966516c0
1 /* Test that use of strncpy does not result in a "value computed is
2 not used" warning. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -Wall -Wno-stringop-truncation" } */
6 #include <string.h>
7 void
8 f (char *s)
10 strncpy (s, "::", 2);