mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
14 lines
228 B
C++
14 lines
228 B
C++
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
|
|
|
|
enum TchkType {
|
|
tchkNum, tchkString, tchkSCN, tchkNone
|
|
};
|
|
|
|
struct Operator {
|
|
enum TchkType tchk[8];
|
|
};
|
|
|
|
struct Operator opTab[] = {
|
|
{{tchkNum, tchkNum, tchkString} }
|
|
};
|
|
|