• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgxx -S %s -o - | grep noalias
2 
foo(int & __restrict myptr1,int & myptr2)3 void foo(int & __restrict myptr1, int & myptr2) {
4   myptr1 = 0;
5   myptr2 = 0;
6 }
7