summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/torture/uninit-pr106204.c
blob: 25edcf5eecc6b10bf9f94c41f427dd01185b1851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-ftrivial-auto-var-init=zero" } */

int foo(unsigned *len);
int test_1()
{
 unsigned len; /* { dg-bogus "uninit" } */
 int rc;

 rc = foo(&len);
 if (!rc)
  rc = len;
 return rc;
}