This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / FrontendC++ / 2007-07-29-RestrictRefArg.cpp
blob128ddb3ab59273095af56f37382806c0968be4b5
1 // RUN: %llvmgxx -S %s -o - | grep noalias
3 void foo(int & __restrict myptr1, int & myptr2) {
4 myptr1 = 0;
5 myptr2 = 0;