mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
6654d90831
harness to fail the tests. The warning all appear legitimate. llvm-svn: 52186
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];
|
|
}
|