natClass.cc (_Jv_LayoutVTableMethods): Cast pointers to uaddr, not int.

* java/lang/natClass.cc (_Jv_LayoutVTableMethods): Cast pointers
	to uaddr, not int.
	* java/lang/natClassLoader.cc (_Jv_PrepareCompiledClass):
	Likewise.

From-SVN: r89346
This commit is contained in:
Andreas Schwab 2004-10-20 21:42:33 +00:00 committed by Andreas Schwab
parent a03ea89be3
commit b3a450236a
3 changed files with 12 additions and 5 deletions

View file

@ -131,12 +131,12 @@ _Jv_PrepareCompiledClass (jclass klass)
// If superclass looks like a constant pool entry,
// resolve it now.
if ((uaddr) klass->superclass < pool->size)
klass->superclass = pool->data[(int) klass->superclass].clazz;
klass->superclass = pool->data[(uaddr) klass->superclass].clazz;
// Likewise for interfaces.
for (int i = 0; i < klass->interface_count; i++)
if ((uaddr) klass->interfaces[i] < pool->size)
klass->interfaces[i] = pool->data[(int) klass->interfaces[i]].clazz;
klass->interfaces[i] = pool->data[(uaddr) klass->interfaces[i]].clazz;
// Resolve the remaining constant pool entries.
for (int index = 1; index < pool->size; ++index)