hanchenye-llvm-project/llvm/test/FrontendC/2007-10-30-Volatile.c

7 lines
117 B
C
Raw Normal View History

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