[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2007-10-30-Volatile.c
blob52b47284c25ee6c9283013aa941db64efff74d2a
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null -Wall -Wno-unused-but-set-variable -Werror
2 void bork(void) {
3 char * volatile p = 0;
4 volatile int cc = 0;
5 p += cc;