blob: b4922beab1b291abf694cbf9569565734661ca80 [file] [log] [blame]
Christopher Lambe5b288e2007-08-01 18:48:29 +00001// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
2
3
4class foo {
5 int member[4];
6
7 void bar(int * a);
8
9};
10
11void foo::bar(int * a) __restrict {
12 member[3] = *a;
13}