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