aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/data-model-13.c
blob: 31c1896b0c2e61ca9289b318100a654278c0afb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdlib.h>

union
{
  void *ptr_val;
  int int_val;
} global_union;

void test_1 (void)
{
  global_union.ptr_val = malloc (1024);
}

void test_2 (void)
{
  global_union.ptr_val = malloc (1024); /* { dg-message "allocated here" } */
  global_union.int_val = 0; /* { dg-warning "leak of 'global_union.ptr_val' " } */
}