2015-05-04 Sandra Loosemore <sandra@codesourcery.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20030730-1.c
blob9f8f2746734d4e475a5ad13c8ace9793800757cd
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dom2 -fdelete-null-pointer-checks" } */
4 extern void exit (int);
5 extern void *ggc_alloc (__SIZE_TYPE__);
6 typedef struct dw_attr_struct *dw_attr_ref;
7 typedef struct dw_attr_struct
9 int dw_attr;
11 dw_attr_node;
12 void
13 foo (int attr_kind, unsigned long offset)
15 dw_attr_ref attr = (dw_attr_ref) ggc_alloc (sizeof (dw_attr_node));
16 attr->dw_attr = attr_kind;
17 if (attr != 0)
18 exit (0);
21 /* There should be no IF conditionals, unless target disables -fdelete-null-pointer-checks */
22 /* { dg-final { scan-tree-dump-times "if " 0 "dom2" { target { ! keeps_null_pointer_checks } } } } */
23 /* { dg-final { scan-tree-dump "if " "dom2" { target { keeps_null_pointer_checks } } } } */
25 /* { dg-final { cleanup-tree-dump "dom2" } } */