New test.

From-SVN: r19587
This commit is contained in:
Jeff Law 1998-05-06 10:35:35 -06:00
parent cc1328655c
commit 5fe8708c3c

View File

@ -0,0 +1,26 @@
struct decision
{
char enforce_mode;
struct decision *next;
};
static void
clear_modes (p)
register struct decision *p;
{
goto blah;
foo:
p->enforce_mode = 0;
blah:
if (p)
goto foo;
}
main()
{
struct decision *p = 0;
clear_modes (p);
exit (0);
}