opnsense-src/test/FrontendC/2007-02-16-VariableSizeStructArg.c
2009-06-02 17:52:33 +00:00

7 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];
}