blob: 5925d972b269e5bacc3e655d83496e8d67432c42 [file] [log] [blame]
Duncan Sandsbb8f5902010-11-25 21:24:35 +00001// RUN: %llvmgcc -S %s -o - | grep noalias
Christopher Lambdb953052007-07-29 23:29:16 +00002
3void foo(int * __restrict myptr1, int * myptr2) {
4 myptr1[0] = 0;
5 myptr2[0] = 0;
Dan Gohman28beeea2007-08-15 13:36:28 +00006}