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 */