xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2008-07-22-bitfield-init-after-zero-len-array.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple=i686-apple-darwin9 -emit-llvm -o - %s | FileCheck %s
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc struct et7 {
4*f4a2713aSLionel Sambuc   float lv7[0];
5*f4a2713aSLionel Sambuc   char mv7:6;
6*f4a2713aSLionel Sambuc } yv7 = {
7*f4a2713aSLionel Sambuc   {},
8*f4a2713aSLionel Sambuc   52,
9*f4a2713aSLionel Sambuc };
10*f4a2713aSLionel Sambuc 
11*f4a2713aSLionel Sambuc // CHECK: @yv7 = global
12*f4a2713aSLionel Sambuc // CHECK: i8 52,
13