aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/calloc-2.c
blob: 3e5504e763edd9a6fef398e37db8146672af8bf6 (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 -fdump-tree-optimized" } */

int n, nn;
void* f()
{
  char *p = __builtin_calloc (n, 1);
  p[42] = '\n';
  __builtin_memset (p, 0, nn);
  return p;
}

void* g(int m1, int m2)
{
  char *p = __builtin_malloc (m2);
  while (--m1)
  {
    __builtin_memset (p, 0, m2);
    p[n] = 'b';
  }
  return p;
}

/* { dg-final { scan-tree-dump-times "malloc" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "calloc" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "memset" 2 "optimized" } } */