Commit 3e69b919 by Andrew Haley Committed by Andrew Haley

natClassLoader.cc (_Jv_NewClassFromInitializer): Clear INTERPRETED access modifier.

2007-05-31  Andrew Haley  <aph@redhat.com>

        * java/lang/natClassLoader.cc (_Jv_NewClassFromInitializer): Clear
        INTERPRETED access modifier.

From-SVN: r125218
parent 10c1d4af
2007-05-31 Andrew Haley <aph@redhat.com>
* java/lang/natClassLoader.cc (_Jv_NewClassFromInitializer): Clear
INTERPRETED access modifier.
2007-05-31 Paolo Bonzini <bonzini@gnu.org>
PR libjava/32098
......
......@@ -281,7 +281,16 @@ _Jv_NewClassFromInitializer (const char *class_initializer)
memcpy (dst, src, len);
new_class->engine = &_Jv_soleIndirectCompiledEngine;
/* FIXME: Way back before the dawn of time, we overloaded the
SYNTHETIC class access modifier to mean INTERPRETED. This was a
Bad Thing, but it didn't matter then because classes were never
marked synthetic. However, it is possible to redeem the
situation: _Jv_NewClassFromInitializer is only called from
compiled classes, so we clear the INTERPRETED flag. This is a
kludge! */
new_class->accflags &= ~java::lang::reflect::Modifier::INTERPRETED;
(*_Jv_RegisterClassHook) (new_class);
return new_class;
......
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