blob: 2e85abdf25ea391df80f0cad86ec7b2892ae0550 [file] [log] [blame]
Duncan Sands5fe97a02010-11-25 21:39:17 +00001// RUN: %llvmgxx -S %s -o - | grep noalias
Christopher Lamb3fbfad32007-07-29 23:29:16 +00002
3void foo(int * __restrict myptr1, int * myptr2) {
4 myptr1[0] = 0;
5 myptr2[0] = 0;
6}