hanchenye-llvm-project/llvm/test/FrontendC++/2009-02-07-VolatileArrayRef...

8 lines
137 B
C++

// RUN: %llvmgxx -S %s -o - | grep {volatile load}
// PR3320
void test(volatile int *a) {
// should be a volatile load.
a[0];
}