blob: 17aac1a987c2c80b374924d7b28ba74258161334 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// 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}