Mercurial > hg > CbC > GCC_original
view gcc/testsuite/c-c++-common/pr27336.c @ 19:2b5abeee2509 default tip
update gcc11
author | anatofuz |
---|---|
date | Mon, 25 May 2020 07:50:57 +0900 |
parents | 1830386684a0 |
children |
line wrap: on
line source
/* { dg-do compile } */ /* { dg-options "-O2 -fdelete-null-pointer-checks -fdump-tree-vrp1" } */ /* { dg-skip-if "" { keeps_null_pointer_checks } } */ struct B { int x; }; extern void g3(struct B *that) __attribute__((nonnull)); int f3(struct B *a) { g3(a); return a != (void *)0; } /* { dg-final { scan-tree-dump "return 1;" "vrp1" } } */