mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
e23727694c
llvm-svn: 90626
19 lines
217 B
C
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);
|
|
}
|