llvm-6502/test/FrontendC/2007-12-VarArrayDebug.c
2009-12-05 00:02:37 +00:00

19 lines
217 B
C

// RUN: %llvmgcc -S -g -O %s -o - | llc
// RUN: %llvmgcc -S -g %s -o - | llc
extern void foo (void);
static
void baz (int i)
{
foo ();
typedef char A[i];
struct { A b; } *x = 0;
}
void
bar (i)
{
baz (i);
}