blob: 128ddb3ab59273095af56f37382806c0968be4b5 [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;
5 myptr2 = 0;
6}