* gcc.c-torture/compile/991229-1.c: New test.

From-SVN: r31133
This commit is contained in:
Jeffrey A Law 1999-12-30 06:47:39 +00:00 committed by Jeff Law
parent 671d2ac663
commit bacaaca4b8
2 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Wed Dec 29 23:48:49 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/991229-1.c: New test.
Wed Dec 29 20:54:46 1999 Greg McGary <gkm@eng.ascend.com>
* gcc.c-torture/compile/labels-2.c: New test.

View File

@ -0,0 +1,23 @@
static int parse (int, int);
static int parseStmt (int, int);
ejEval()
{
int state;
state = parse(8 , 0x1 );
}
static int parse(int state, int flags)
{
switch (state) {
case 8 :
case 18 :
case 6 :
case 2 :
state = parseStmt(state, flags);
break;
}
}
static int parseStmt(int state, int flags)
{
parse (2, flags);
}