blob: 908bb28ee500c970738b14e5161c307f7b278439 [file] [log] [blame]
/* { dg-additional-options "-Wno-incompatible-pointer-types" } */
#include <stdlib.h>
struct foo;
struct bar;
void *hv (struct foo **tm)
{
void *p = __builtin_malloc (4);
*tm = p;
if (!p)
abort ();
return p;
}
void a5 (void)
{
struct bar *qb = NULL;
hv (&qb);
} /* { dg-warning "leak of 'qb'" } */