xref: /illumos-gate/usr/src/tools/smatch/src/validation/linear/cast-volatile.c (revision f34e64d88f694155255ac1c93990904dbfa28af3)
1 static int foo(volatile int *a, int v)
2 {
3 	*a = v;
4 	return *a;
5 }
6 
7 /*
8  * check-name: cast-volatile
9  * check-command: test-linearize -fdump-ir=linearize $file
10  *
11  * check-output-ignore
12  * check-output-excludes: sext\\.
13  * check-output-excludes: zext\\.
14  * check-output-excludes: trunc\\.
15  */
16