Commit 568276d7 by Jeffrey A Law Committed by Jeff Law

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

From-SVN: r28381
parent 130e63de
Sun Aug 1 22:29:34 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/990801-1.c: New test.
Sun Jul 25 21:41:37 1999 Jeffrey A Law (law@cygnus.com)
* README: More listname related changes.
......
extern int getch();
extern int class();
int
token()
{
int state = 1;
while (1) {
int c=0;
c = getch();
switch (state) {
case 1: break;
case 4: break;
case 5: break;
case 6:
{
switch (class(c)) {
default: break;
}
} break;
case 7: break;
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment