/*
 *	Second attempt to get the orion C compiler to produce code which
 *	is never executed.
 *
 *	It didn't fall for it, but the switch code is quite unoptimal!
 */

main()
{
	int x=0, y;

	switch(x) {
	case 1:
		y = 1;
		break;
		y = 2;
	case 2:
		y = 3;
		break;
	}
}
