Home | History | Annotate | Download | only in FrontendC++
      1 // RUN: %llvmgxx -S %s -o - | grep noalias
      2 
      3 
      4 class foo {
      5   int member[4];
      6 
      7   void bar(int * a);
      8 
      9 };
     10 
     11 void foo::bar(int * a) __restrict {
     12   member[3] = *a;
     13 }
     14