blob: 6eaf9d66f2dc7bc05afc5491881f7644dc4e3ee0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3enum TchkType {
4 tchkNum, tchkString, tchkSCN, tchkNone
5};
6
7struct Operator {
8 enum TchkType tchk[8];
9};
10
11struct Operator opTab[] = {
12 {{tchkNum, tchkNum, tchkString} }
13};
14