llvm-6502/test/FrontendC++/2009-02-07-VolatileArrayRefHack.cpp

8 lines
137 B
C++
Raw Normal View History

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