mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-09 05:47:13 +00:00
9 lines
128 B
C
9 lines
128 B
C
// RUN: %llvmgcc %s -S -o -
|
|
void* p (int n) {
|
|
struct f {
|
|
char w; char x[n]; char z[];
|
|
} F;
|
|
F.x[0]='x';
|
|
return &F;
|
|
}
|