ref: 844cf5ff2aa2a862b58d2e503e02534e133ad395
dir: /tests/cc/execute/0005-ifstmt.c/
int
main()
{
int x;
int *p;
int **pp;
x = 0;
p = &x;
pp = &p;
if(*p)
return 1;
if(**pp)
return 1;
else
**pp = 1;
if(x)
return 0;
else
return 1;
}