mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-08 05:16:53 +00:00
8 lines
147 B
C
8 lines
147 B
C
// RUN: %llvmgcc -S -w %s -o -
|
|
// PR1170
|
|
int f(int a, struct {int b[a];} c) { return c.b[0]; }
|
|
|
|
int g(struct {int b[1];} c) {
|
|
return c.b[0];
|
|
}
|