1// RUN: %clang_cc1 %s -O3 -emit-llvm -o - | grep mul2// PR12333 4float foo(int w, float A[][w], int g, int h) {5 return A[g][0];6}7 8