aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wstringop-overflow-70.c
blob: ccfe2cefd1ceed7b54f3b41e3594f74f749c2c48 (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
/* PR tree-optimization/97027 - missing warning on buffer overflow storing
   a larger scalar into a smaller array
   Verify overflow by vector stores.
   { dg-do compile }
   { dg-options "-O3" } */

void* nowarn_loop (void)
{
  char *p = __builtin_malloc (16);
  for (int i = 0; i != 16; ++i)
    p[i] = i;
  return p;
}

void* warn_loop (void)
{
  char *p = __builtin_malloc (15);
  for (int i = 0; i != 16; ++i)
    /* The size of the write below depends on the target.  When vectorized
       the vector size may be 4, 8 or 16, otherwise it may be a series of byte
       assignments.  */
    p[i] = i;       // { dg-warning "writing (1|2|4|8|16) bytes? into a region of size (0|1|3|7|15)" }
  return p;
}