1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/FrontendC/2007-12-VarArrayDebug.c

19 lines
217 B
C
Raw Normal View History

// 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);
}