/*
 *	See what the compiler makes of nested ifs. jumps to jumps?
 *	Oh no! The Orion not only produces jumps to jumps and jumps to
 *	returns, but jumps to jumps to returns!!
 */

int cond1, cond2;
int x;

nestif()
{
	if (cond1) {
		if (cond2) x=1;
		else x=2;
	} else {
		if (cond2) x=3;
		else x=4;
	}
}
