teak-llvm/clang/test/Sema/enum-packed.c
Douglas Gregor 56980d688b With packed enums, an enumerator's value may be stored in more bits
than the enumeration type itself takes. Fixes PR7477.

llvm-svn: 107163
2010-06-29 17:12:35 +00:00

17 lines
209 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// PR7477
enum __attribute__((packed)) E {
Ea, Eb, Ec, Ed
};
void test_E(enum E e) {
switch (e) {
case Ea:
case Eb:
case Ec:
case Ed:
break;
}
}