summaryrefslogtreecommitdiff
path: root/test/regression/volatile1.c
blob: 850bbeda44fdfe44318bf44a9129e8fa0dbc07a0 (plain)
1
2
3
4
5
6
7
8
9
volatile int v;

int f1(void) { return v; }

void f2(void) { v = 42; }

int f3(void) { return v / v + 1 + v; }

void f4(void) { v; }