blob: d0b208825bc2cf1601163fc236336b8e7a5dc474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-salias-vops" } */
struct a
{
int length;
int a1[256];
};
void *malloc(__SIZE_TYPE__ size) __attribute__((malloc));
int f(void)
{
struct a *a = malloc(sizeof(struct a));
return a->length;
}
/* { dg-final { scan-tree-dump-times "VDEF <HEAP" 1 "salias"} } */
/* { dg-final { cleanup-tree-dump "salias" } } */
|