1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CFrontend/2007-03-01-VarSizeArrayIdx.c

8 lines
133 B
C
Raw Normal View History

2007-03-02 08:29:59 +01:00
// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm | grep mul
// PR1233
float foo(int w, float A[][w], int g, int h) {
return A[g][0];
}