Print vector types appropriately. This gets basic vector code working
[oota-llvm.git] / test / CFrontend / 2007-03-01-VarSizeArrayIdx.c
1 // RUN: %llvmgcc %s -O3 -S -o - -emit-llvm | grep mul
2 // PR1233
3
4 float foo(int w, float A[][w], int g, int h) {
5   return A[g][0];
6 }
7