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