blob: b6d61a714a69839e749937e43278882e73e0c421 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o - | grep noalias
2
3void foo(int * __restrict myptr1, int * myptr2) {
4 myptr1[0] = 0;
5 myptr2[0] = 0;
6}