llvm-6502/test/CFrontend/2007-10-30-Volatile.c

7 lines
117 B
C
Raw Normal View History

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