New testcase for PR125

llvm-svn: 10071
This commit is contained in:
Chris Lattner 2003-11-18 20:30:00 +00:00
parent 705a6376bd
commit 04a9cb7189

View File

@ -0,0 +1,12 @@
enum TchkType {
tchkNum, tchkString, tchkSCN, tchkNone
};
struct Operator {
enum TchkType tchk[8];
};
struct Operator opTab[] = {
{{tchkNum, tchkNum, tchkString} }
};