Print vector types appropriately. This gets basic vector code working
[oota-llvm.git] / test / CFrontend / 2007-07-29-RestrictPtrArg.c
1 // RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep noalias
2
3 void foo(int * __restrict myptr1, int * myptr2) {
4   myptr1[0] = 0;
5   myptr2[0] = 0;
6 }