Subject: Loading of intr_depth in INTRENTER macro ...
To: None <port-powerpc@NetBSD.ORG>
From: Andrew Cagney <cagney@tpgi.com.au>
List: port-powerpc
Date: 01/16/1997 10:46:59
Hello,

The macro INTRENTER in locore.S contains:

	...
	li	5,_C_LABEL(intr_depth)@ha; \
	lwz	5,_C_LABEL(intr_depth)@l(5);	\
	...

I suspect that it should be:

	...
	lis	5,_C_LABEL(intr_depth)@ha;
	....


		enjoy, Andrew
 ....