xref: /illumos-gate/usr/src/tools/smatch/src/validation/linear/phi-order04.c (revision 4c87aefe8930bd07275b8dd2e96ea5f24d93a52e)
1 static void foo(int *b)
2 {
3 	if (1) {
4 		int c;
5 		b = &c;
6 	}
7 }
8 
9 /*
10  * check-name: phi-order04
11  * check-command: sparse -vir -flinearize=last $file
12  */
13