llvm-6502/test/FrontendC/2007-12-VarArrayDebug.c

19 lines
237 B
C
Raw Normal View History

// RUN: %llvmgcc -S -g -O %s -o - | llvm-as | llc
// RUN: %llvmgcc -S -g %s -o - | llvm-as | 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);
}