blob: 99eae39054b3e3f8ea1ae85b05ab9479e48a7852 [file] [log] [blame]
Duncan Sandsac656612007-09-26 07:28:20 +00001// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep noalias
Christopher Lambd35c7e32007-07-29 23:29:16 +00002
3void foo(int * __restrict myptr1, int * myptr2) {
4 myptr1[0] = 0;
5 myptr2[0] = 0;
Dan Gohman8c89a502007-08-15 13:36:28 +00006}