summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2007-07-29-RestrictRefArg.cpp
blob: 128ddb3ab59273095af56f37382806c0968be4b5 (plain)
1
2
3
4
5
6
// RUN: %llvmgxx -S %s -o - | grep noalias

void foo(int & __restrict myptr1, int & myptr2) {
  myptr1 = 0;
  myptr2 = 0;
}