blob: feefaa1759c5660b04818ef4c2363e141e7ff3a1 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | grep noalias
class foo {
int member[4];
void bar(int * a);
};
void foo::bar(int * a) __restrict {
member[3] = *a;
}