foo(int ** g,int j)1 int foo(int **g, int j)
2 {
3 	int i = 1;
4 	int *a;
5 	int **p;
6 
7 	a = &i;
8 	p = &a;
9 	*p[0] = 0;
10 	return i;
11 }
12 
13 /*
14  * check-name: address-used00
15  * check-command: test-linearize -Wno-decl -fdump-ir=final $file
16  * check-output-ignore
17  * check-output-excludes: ret\\..* \\$1
18  */
19