xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2007-10-30-Volatile.c (revision b5e2faaaaf60a8b9a02f8d72f64caa56a87eb312)
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null -Wall -Werror
2 void bork() {
3   char * volatile p = 0;
4   volatile int cc = 0;
5   p += cc;
6 }
7