view gcc/testsuite/gcc.dg/pr81345.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
line wrap: on
line source

/* PR other/81345 - -Wall resets -Wstringop-overflow to 1 from the default 2
   { dg-do compile }
   { dg-options "-O2 -Wall" } */

char a[3];

void f (const char *s)
{
  __builtin_strncpy (a, s, sizeof a + 1);   /* { dg-warning "\\\[-Wstringop-overflow=]" } */
}

struct S { char a[3]; int i; };

void g (struct S *d, const char *s)
{
  __builtin_strncpy (d->a, s, sizeof d->a + 1);   /* { dg-warning "\\\[-Wstringop-overflow=]" } */
}