link.cc (ensure_class_linked): Conditionally compile _Jv_IsInterpretedClass on INTERPRETER.

2004-11-27  Andrew Haley  <aph@redhat.com>

	* link.cc (ensure_class_linked): Conditionally compile
	_Jv_IsInterpretedClass on INTERPRETER.
	(print_class_loaded): Likewise.
	(wait_for_state): Likewise.

	* include/jvm.h (ROUND): Move to here from include/java-interp.h.
	* include/java-interp.h (ROUND): Remove.

From-SVN: r91375
This commit is contained in:
Andrew Haley 2004-11-27 12:37:32 +00:00 committed by Andrew Haley
parent 02a854f970
commit 1daa567cf8
4 changed files with 22 additions and 4 deletions

View file

@ -45,9 +45,6 @@ int _Jv_count_arguments (_Jv_Utf8Const *signature,
jboolean staticp = true);
void _Jv_VerifyMethod (_Jv_InterpMethod *method);
/* FIXME: this should really be defined in some more generic place */
#define ROUND(V, A) (((((unsigned) (V))-1) | ((A)-1))+1)
/* the interpreter is written in C++, primarily because it makes it easy for
* the entire thing to be "friend" with class Class. */