Home | History | Annotate | Download | only in FrontendC++
      1 // RUN: %llvmgxx -S %s -o - | grep {volatile load}
      2 // PR3320
      3 
      4 void test(volatile int *a) {
      5     // should be a volatile load.
      6     a[0];
      7 }
      8