mirror of
https://github.com/opnsense/src.git
synced 2026-03-10 10:13:20 -04:00
18 lines
217 B
C
18 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);
|
|
}
|