This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / FrontendC++ / 2007-08-01-RestrictMethod.cpp
blobfeefaa1759c5660b04818ef4c2363e141e7ff3a1
1 // RUN: %llvmgxx -S %s -o - | grep noalias
4 class foo {
5 int member[4];
7 void bar(int * a);
9 };
11 void foo::bar(int * a) __restrict {
12 member[3] = *a;