/*
 *	See if the compiler produces a jump to a return instruction for this.
 *	On the Orion it also exhibits the common.c problem. Which is the best
 *	optimisation? How do you decide automatically? Does it matter?
 */

int condition, x;

jmptortn()
{
	if (condition) {
		x = 1;
	} else {
		x = 2;
	}
}
