mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
57304bfed8
llvm-svn: 78758
8 lines
157 B
C
8 lines
157 B
C
// RUN: %llvmgcc -S %s -o - | grep {getelementptr inbounds \\\[0 x i32\\\]}
|
|
extern void f(int *);
|
|
int e(int m, int n) {
|
|
int x[n];
|
|
f(x);
|
|
return x[m];
|
|
}
|