Restore the behavior of frame lowering before my refactoring.
[oota-llvm.git] / test / FrontendC++ / 2007-07-29-RestrictRefArg.cpp
1 // RUN: %llvmgxx -S %s -o - | grep noalias
2
3 void foo(int & __restrict myptr1, int & myptr2) {
4   myptr1 = 0;
5   myptr2 = 0;
6 }