Teach getZeroExtendExpr and getSignExtendExpr to use trip-count
[llvm/msp430.git] / test / FrontendC++ / 2003-11-18-EnumArray.cpp
blob6eaf9d66f2dc7bc05afc5491881f7644dc4e3ee0
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
3 enum TchkType {
4 tchkNum, tchkString, tchkSCN, tchkNone
5 };
7 struct Operator {
8 enum TchkType tchk[8];
9 };
11 struct Operator opTab[] = {
12 {{tchkNum, tchkNum, tchkString} }