• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgxx -S %s -o - | grep {volatile load}
2 // PR3320
3 
test(volatile int * a)4 void test(volatile int *a) {
5     // should be a volatile load.
6     a[0];
7 }
8