Avoid Tcl substitution, introduced %llvmgcc_only for this one little test
[oota-llvm.git] / test / FrontendC / 2007-02-16-VariableSizeStructArg.c
1 // RUN: %llvmgcc -S -w %s -o - 
2 // PR1170
3 int f(int a, struct {int b[a];} c) {  return c.b[0]; }
4
5 int g(struct {int b[1];} c) {
6   return c.b[0];
7 }