xref: /illumos-gate/usr/src/tools/smatch/src/validation/memops-volatile.c (revision b531f6d16eb39863e7bbc34773fb7ef7a282a0a2)
1 static int foo(volatile int *a, int v)
2 {
3 	*a = v;
4 	*a = 0;
5 	return *a;
6 }
7 
8 /*
9  * check-name: memops-volatile
10  * check-command: test-linearize $file
11  *
12  * check-output-ignore
13  * check-output-contains: store\\..*%arg2 -> 0\\[%arg1]
14  * check-output-contains: store\\..*\\$0 -> 0\\[%arg1]
15  * check-output-contains: load\\..*%r.* <- 0\\[%arg1]
16  */
17