blob: 7a9f89a66e26ba41e9af826a98310f5e61d28211 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// 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