aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/malloc-ipa-4.c
blob: 82d50bd3c9367966a9075bc68e4c660025caf311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdlib.h>

static void calls_free(int *q)
{
  free(q);
}

void test(void *p)
{
  calls_free(p);

  free(p); /* { dg-warning "double-'free' of 'p'" } */
}