Add remaining AVX instructions (most of them dealing with GR64 destinations. This...
[oota-llvm.git] / test / FrontendC++ / 2007-07-29-RestrictPtrArg.cpp
1 // RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
2
3 void foo(int * __restrict myptr1, int * myptr2) {
4   myptr1[0] = 0;
5   myptr2[0] = 0;
6 }