4.4BSD/usr/src/old/sdb/TESTS/x.c

Compare this file to the similar file:
Show the results in this format:

main() {
	foo(123456);
}

foo(){
	register	int	f_a, f_b;
	f_a = 37;
	f_b = 38;
	bar();
};

bar(){
	register	int 	b_a, b_b, b_c;
	b_a = 2;
	b_b = 3;
	b_c = 4;
	abort();
}