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