blob: bb1b3bf301e5e51356b2aaf2d886af0086b0d617 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
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