summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2007-07-29-RestrictRefArg.cpp
blob: 0c28e4d27a2bb05037a105950339c2cd0dd20d4d (plain)
1
2
3
4
5
6
// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias

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