diff options
-rw-r--r-- | test/CFrontend/2007-03-06-VarSizeInStruct1.c | 8 | ||||
-rw-r--r-- | test/CFrontend/2007-03-06-VarSizeInStruct2.c | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/CFrontend/2007-03-06-VarSizeInStruct1.c b/test/CFrontend/2007-03-06-VarSizeInStruct1.c new file mode 100644 index 0000000000..8d28a1dbd5 --- /dev/null +++ b/test/CFrontend/2007-03-06-VarSizeInStruct1.c @@ -0,0 +1,8 @@ +// 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; +} diff --git a/test/CFrontend/2007-03-06-VarSizeInStruct2.c b/test/CFrontend/2007-03-06-VarSizeInStruct2.c new file mode 100644 index 0000000000..13bc3aaf9a --- /dev/null +++ b/test/CFrontend/2007-03-06-VarSizeInStruct2.c @@ -0,0 +1,8 @@ +// RUN: %llvmgcc %s -S -o - +char p (int n) { + struct f { + char w; char x[n]; char y[n]; + } F; + + return F.x[0]; +} |