1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 00:12:50 +01: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];
}