summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wstringop-overflow-32.c
blob: e5939567a4ded4b0b3e63273247a346b9335b006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* PR middle-end/93829 - bogus -Wstringop-overflow on memcpy of a struct
   with a pointer member from another with a long string
   { dg-do compile }
   { dg-options "-O2 -Wall" } */

extern void* memcpy (void*, const void*, __SIZE_TYPE__);

#define S40 "0123456789012345678901234567890123456789"

const char s40[] = S40;

struct S
{
  const void *p, *q, *r;
} s, sa[2];


void test_lit_decl (void)
{
  struct S t = { 0, S40, 0 };

  memcpy (&s, &t, sizeof t);    // { dg-bogus "-Wstringop-overflow" }
}

void test_str_decl (void)
{
  struct S t = { 0, s40, 0 };

  memcpy (&s, &t, sizeof t);    // { dg-bogus "-Wstringop-overflow" }
}


void test_lit_ssa (int i)
{
  if (i < 1)
    i = 1;
  struct S *p = &sa[i];
  struct S t = { 0, S40, 0 };

  memcpy (p, &t, sizeof t);    // { dg-bogus "-Wstringop-overflow" }
}

void test_str_ssa (int i)
{
  if (i < 1)
    i = 1;
  struct S *p = &sa[i];
  struct S t = { 0, s40, 0 };

  memcpy (p, &t, sizeof t);    // { dg-bogus "-Wstringop-overflow" }
}