According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git] / test / FrontendC++ / 2005-02-19-BitfieldStructCrash.cpp
blob8f571e074b8e2a2ea26c77a14106d25a85e2c62f
1 // RUN: %llvmgxx -S %s -o -
3 struct QChar {unsigned short X; QChar(unsigned short); } ;
5 struct Command {
6 Command(QChar c) : c(c) {}
7 unsigned int type : 4;
8 QChar c;
9 };
11 Command X(QChar('c'));
13 void Foo(QChar );
14 void bar() { Foo(X.c); }