forked from OSchip/llvm-project
parent
05906cf0f0
commit
47487608a9
|
@ -0,0 +1,12 @@
|
|||
enum TchkType {
|
||||
tchkNum, tchkString, tchkSCN, tchkNone
|
||||
};
|
||||
|
||||
struct Operator {
|
||||
enum TchkType tchk[8];
|
||||
};
|
||||
|
||||
struct Operator opTab[] = {
|
||||
{{tchkNum, tchkNum, tchkString} }
|
||||
};
|
||||
|
Loading…
Reference in New Issue