1 // RUN: %clang_cc1 -mms-bitfields -fsyntax-only -verify -triple x86_64-apple-darwin9 %s
2 // expected-no-diagnostics
4 // The -mms-bitfields commandline parameter should behave the same
5 // as the ms_struct attribute.
12 // MS pads out bitfields between different types.
13 static int arr
[(sizeof(t
) == 8) ? 1 : -1];
17 typedef unsigned int UINT32
;
28 static int arr2
[(sizeof(Inner
) == 8) ? 1 : -1];