Clang Project

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