summaryrefslogtreecommitdiff
path: root/libjava/include/java-interp.h
diff options
context:
space:
mode:
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-27 12:37:32 +0000
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-27 12:37:32 +0000
commitf31322193e16f434344570b0a8885405c3f216a0 (patch)
tree900597a6d50287ab3119dd427bda46b0a85dee9e /libjava/include/java-interp.h
parent3a4befb691b92f340c63f0582047b92a20bb5db0 (diff)
downloadgcc-f31322193e16f434344570b0a8885405c3f216a0.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91375 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/include/java-interp.h')
-rw-r--r--libjava/include/java-interp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libjava/include/java-interp.h b/libjava/include/java-interp.h
index c8e041ae387..4126c2f44cd 100644
--- a/libjava/include/java-interp.h
+++ b/libjava/include/java-interp.h
@@ -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. */