aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/memops-volatile.c
blob: 0f3e12ad24fc027a1bd1cfdf6051c059945ccc9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
static int foo(volatile int *a, int v)
{
	*a = v;
	return *a;
}

/*
 * check-name: memops-volatile
 * check-command: test-linearize $file
 *
 * check-output-start
foo:
.L0:
	<entry-point>
	store.32    %arg2 -> 0[%arg1]
	load.32     %r5 <- 0[%arg1]
	ret.32      %r5


 * check-output-end
 */