1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/FrontendC/2007-03-06-VarSizeInStruct2.c

9 lines
119 B
C
Raw Normal View History

// RUN: %llvmgcc %s -S -o -
char p (int n) {
struct f {
char w; char x[n]; char y[n];
} F;
return F.x[0];
}