From 9cc2dc63bb9df3ba40d358fb40b336fa22d05b25 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 29 Jun 2005 16:18:53 +0000 Subject: [PATCH] interpret.cc (run): Use _Jv_CheckCast. * interpret.cc (run) : Use _Jv_CheckCast. From-SVN: r101427 --- libjava/ChangeLog | 5 +++++ libjava/interpret.cc | 7 ++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 2705cee3344b..356b3ba0ab77 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2005-06-29 Tom Tromey + + * interpret.cc (run) : Use + _Jv_CheckCast. + 2005-06-28 Robin Green PR java/22189 diff --git a/libjava/interpret.cc b/libjava/interpret.cc index 355b5b9054a0..8b46dc6fa4a2 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -25,7 +25,6 @@ details. */ #include #include #include -#include #include #include #include @@ -3022,8 +3021,7 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args, _Jv_InterpMethod *meth) jclass to = (_Jv_Linker::resolve_pool_entry (meth->defining_class, index)).clazz; - if (value != NULL && ! to->isInstance (value)) - throw new java::lang::ClassCastException (to->getName()); + value = (jobject) _Jv_CheckCast (to, value); PUSHA (value); @@ -3040,8 +3038,7 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args, _Jv_InterpMethod *meth) SAVE_PC(); jobject value = POPA (); jclass to = (jclass) AVAL (); - if (value != NULL && ! to->isInstance (value)) - throw new java::lang::ClassCastException (to->getName()); + value = (jobject) _Jv_CheckCast (to, value); PUSHA (value); } NEXT_INSN;