1// RUN: %clang_cc1 -emit-llvm %s -o /dev/null -Wall -Werror
2void bork() {
3  char * volatile p = 0;
4  volatile int cc = 0;
5  p += cc;
6}
7