New testcase for PR125

llvm-svn: 10071
This commit is contained in:
Chris Lattner 2003-11-18 20:30:00 +00:00
parent 05906cf0f0
commit 47487608a9
1 changed files with 12 additions and 0 deletions

View File

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