Tanya Lattner | d13e0ae | 2004-11-06 22:29:57 +0000 | [diff] [blame] | 1 | // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null |
2 | |||||
Chris Lattner | 7b004ca | 2003-11-18 20:30:00 +0000 | [diff] [blame] | 3 | enum TchkType { |
4 | tchkNum, tchkString, tchkSCN, tchkNone | ||||
5 | }; | ||||
6 | |||||
7 | struct Operator { | ||||
8 | enum TchkType tchk[8]; | ||||
9 | }; | ||||
10 | |||||
11 | struct Operator opTab[] = { | ||||
12 | {{tchkNum, tchkNum, tchkString} } | ||||
13 | }; | ||||
14 |