xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2007-03-01-VarSizeArrayIdx.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 %s -O3 -emit-llvm -o - | grep mul
2 // PR1233
3 
4 float foo(int w, float A[][w], int g, int h) {
5   return A[g][0];
6 }
7 
8