1 // RUN: %clang_cc1 -emit-llvm %s -o - | grep volatile
2 // PR1647
3 
4 void foo(volatile int *p)
5 {
6 p[0] = 0;
7 }
8