blob: 6ebe79672f58b6a969747e7bde982a4a53a05921 [file] [log] [blame]
// RUN: %llvmgcc %s -O3 -S -o - | grep mul
// PR1233
float foo(int w, float A[][w], int g, int h) {
return A[g][0];
}