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