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 } 7