upgrade this test
[oota-llvm.git] / test / CFrontend / 2007-10-02-VolatileArray.c
1 // RUN: %llvmgcc -S %s -o - | grep volatile
2 // PR1647
3
4 void foo(volatile int *p)
5 {
6 p[0] = 0;
7 }