Eli Friedman | 5f608ae | 2012-10-12 23:29:20 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -mms-bitfields -fsyntax-only -verify -triple x86_64-apple-darwin9 %s |
2 | |||||
3 | // The -mms-bitfields commandline parameter should behave the same | ||||
4 | // as the ms_struct attribute. | ||||
5 | struct | ||||
6 | { | ||||
7 | int a : 1; | ||||
8 | short b : 1; | ||||
9 | } t; | ||||
10 | |||||
11 | // MS pads out bitfields between different types. | ||||
12 | static int arr[(sizeof(t) == 8) ? 1 : -1]; |