diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/strncpy-fix-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/strncpy-fix-1.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/strncpy-fix-1.c b/gcc/testsuite/gcc.dg/strncpy-fix-1.c new file mode 100644 index 000000000..b8bc916e0 --- /dev/null +++ b/gcc/testsuite/gcc.dg/strncpy-fix-1.c @@ -0,0 +1,11 @@ +/* Test that use of strncpy does not result in a "value computed is + not used" warning. */ +/* { dg-do compile } */ +/* { dg-options "-O2 -Wall" } */ + +#include <string.h> +void +f (char *s) +{ + strncpy (s, "::", 2); +} |