blob: 058ae174effc2cdc314cee44ac5907b3d4efd1cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* { dg-additional-options "-Wno-incompatible-pointer-types" } */
/* C only: Wno-incompatible-pointer-types is not valid for C++. */
#include <stdlib.h>
struct foo;
struct bar;
void *hv (struct foo **tm)
{
void *p = __builtin_malloc (4);
*tm = (struct foo *) p;
if (!p)
abort ();
return p;
}
void a5 (void)
{
struct bar *qb = NULL;
hv ((struct foo **) &qb);
} /* { dg-warning "leak of 'qb'" } */
|