mms-bitfields.c revision 8e8fb3be5bd78f0564444eca02b404566a5f3b5d
1// RUN: %clang_cc1 -mms-bitfields -fsyntax-only -verify -triple x86_64-apple-darwin9 %s
2// expected-no-diagnostics
3
4// The -mms-bitfields commandline parameter should behave the same
5// as the ms_struct attribute.
6struct
7{
8   int a : 1;
9   short b : 1;
10} t;
11
12// MS pads out bitfields between different types.
13static int arr[(sizeof(t) == 8) ? 1 : -1];
14