Optimize exact sdiv by a constant power of 2 to ashr.
[oota-llvm.git] / test / FrontendC / 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 }