Commit 30fbb95c by Todd Stock Committed by Tom Tromey

re PR libgcj/5670 (verify.cc not properly merging states)

2002-02-13  Todd Stock  <toddastock@yahoo.com>

	Fix for PR libgcj/5670:
	* verify.cc (is_assignable_from_slow): If `source' is interface,
	recursively look for merge with `target'.

From-SVN: r49769
parent 6c4cf695
2002-02-13 Todd Stock <toddastock@yahoo.com>
Fix for PR libgcj/5670:
* verify.cc (is_assignable_from_slow): If `source' is interface,
recursively look for merge with `target'.
2002-02-14 Martin Kahlert <martin.kahlert@infineon.com>
* include/jni.h: Fix typo.
......
......@@ -259,10 +259,22 @@ private:
if (source == NULL)
return false;
}
else if (source->isInterface ())
{
for (int i = 0; i < target->interface_count; ++i)
{
// We use a recursive call because we also need to
// check superinterfaces.
if (is_assignable_from_slow (target->interfaces[i], source))
return true;
}
target = target->getSuperclass ();
if (target == NULL)
return false;
}
else if (target == &java::lang::Object::class$)
return true;
else if (source->isInterface ()
|| source == &java::lang::Object::class$)
else if (source == &java::lang::Object::class$)
return false;
else
source = source->getSuperclass ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment