- Make BranchProbability constructor public.
[llvm/stm8.git] / test / FrontendC / 2007-07-29-RestrictPtrArg.c
blob5925d972b269e5bacc3e655d83496e8d67432c42
1 // RUN: %llvmgcc -S %s -o - | grep noalias
3 void foo(int * __restrict myptr1, int * myptr2) {
4 myptr1[0] = 0;
5 myptr2[0] = 0;