blob: b4d861b2c389469bceb8dd0afbe5ebdb9b1feec3 [file] [log] [blame]
Chris Lattner7b004ca2003-11-18 20:30:00 +00001enum TchkType {
2 tchkNum, tchkString, tchkSCN, tchkNone
3};
4
5struct Operator {
6 enum TchkType tchk[8];
7};
8
9struct Operator opTab[] = {
10 {{tchkNum, tchkNum, tchkString} }
11};
12