C++程序  |  7行  |  117 B

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