Fix PR2096, a regression introduced with my patch last night. This
[oota-llvm.git] / test / CFrontend / 2007-10-30-Volatile.c
1 // RUN: %llvmgcc -S %s -o /dev/null -Wall -Werror
2 void bork() {
3   char * volatile p;
4   volatile int cc;
5   p += cc;
6 }