blob: 5bebe9b09e23ba3287bd90753b4f7b71e65e9220 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | grep {getelementptr i32}
2extern void f(int *);
3int e(int m, int n) {
4 int x[n];
5 f(x);
6 return x[m];
7}