summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/builtin-object-size3.C
blob: b2a9170fc30ef1e6aea303f70c897cde5717aed6 (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
// { dg-do compile }
// { dg-options "-O2" }

void baz (int *, int *);

#define MEMCPY(d,s,l) __builtin___memcpy_chk (d, s, l, __builtin_object_size (d, 0)) // { dg-warning "writing" }

int
foo ()
{
  int *p = new int;
  int *q = new int[4];
  MEMCPY (p, "abcdefghijklmnopqrstuvwxyz", sizeof (int));
  MEMCPY (q, "abcdefghijklmnopqrstuvwxyz", 4 * sizeof (int));
  baz (p, q);
}

int
bar ()
{
  int *p = new int;
  int *q = new int[4];
  MEMCPY (p, "abcdefghijklmnopqrstuvwxyz", sizeof (int) + 1); // { dg-message "in expansion of macro" }
  MEMCPY (q, "abcdefghijklmnopqrstuvwxyz", 4 * sizeof (int) + 1); // { dg-message "in expansion of macro" }
  baz (p, q);
}