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

int f1(void) { return v; }

int f2(void) { return v++; }

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

void f4(void) { v; }