Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / 20030807-2.c
blob956010b9f8d8219e629dca696d220ddbf637bf8e
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dom3" } */
4 extern void abort (void);
6 oof ()
8 int live_head;
9 int * live = &live_head;
11 if (live)
12 bitmap_clear (live);
15 foo(int n)
17 int *space = (int *)__builtin_alloca (n);
19 if (space == 0)
20 abort ();
21 else
22 bar (space);
26 /* There should be no IF conditionals. */
27 /* { dg-final { scan-tree-dump-times "if " 0 "dom3"} } */
28 /* { dg-final { cleanup-tree-dump "dom3" } } */