aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr19831-1.c
blob: 1c8f9722708380ee6f0ffa4fc4f3b91a553c2398 (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
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */

void test1(void)
{
  int *p = __builtin_malloc (sizeof (int) * 4);
  int *q = p;
  *q++ = 4;
  *q++ = 4;
  __builtin_free (p);
}

void test3(int b)
{
  int *p = __builtin_malloc (sizeof (int) * 4);
  if (b)
    __builtin_free (p);
  *p = 5;
}

void test4(int b)
{
  int *p = __builtin_malloc (sizeof (int) * 4);
  if (b)
    __builtin_free (p);
  *p = 5;
  __builtin_free (p);
}

/* { dg-final { scan-tree-dump-times "free" 0 "optimized" } } */
/* { dg-final { scan-tree-dump-times "malloc" 0 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */