Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp111.c
blobcae2bc75aff9a37bcf7adeb942af2653648eddb8
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-evrp -fdelete-null-pointer-checks" } */
3 /* { dg-skip-if "" { keeps_null_pointer_checks } } */
5 void foo (void *p) __attribute__((nonnull(1)));
7 void bar (void *p)
9 foo (p);
10 if (!p)
11 __builtin_abort ();
14 /* { dg-final { scan-tree-dump-not "abort" "evrp" } } */