freebsd_amp_hwpstate/test/FrontendC/2007-10-30-Volatile.c

7 lines
117 B
C

// RUN: %llvmgcc -S %s -o /dev/null -Wall -Werror
void bork() {
char * volatile p;
volatile int cc;
p += cc;
}