mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +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;
|
||
|
}
|