1// RUN: %clang_cc1 -emit-llvm-only -verify %s2// expected-no-diagnostics3 4enum A { a } __attribute((packed));5int func(A x) { return x==a; }6