2008-07-31 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Thu, 31 Jul 2008 17:49:58 +0000 (17:49 -0000)
committerZoltan Varga <vargaz@gmail.com>
Thu, 31 Jul 2008 17:49:58 +0000 (17:49 -0000)
* metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
to gpointer, letting the AOT code decide what to store in it.

svn path=/trunk/mono/; revision=109366

mono/metadata/ChangeLog
mono/metadata/metadata-internals.h

index e5d51d41557538c3722e6f42c5db085f9a5ab1a1..982091711fa4750258f23d7e7beffca72e631596 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-31  Zoltan Varga  <vargaz@gmail.com>
+
+       * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
+       to gpointer, letting the AOT code decide what to store in it.
+
 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
 
        * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
index c4e2e490b3049512fee0609d3278fa902b2bf3df..683cf52390f52b19e5c655335a70fce34032bfc7 100644 (file)
@@ -29,7 +29,7 @@ struct _MonoAssembly {
        int ref_count; /* use atomic operations only */
        char *basedir;
        MonoAssemblyName aname;
-       MonoDl *aot_module;
+       gpointer aot_module;
        MonoImage *image;
        GSList *friend_assembly_names;
        guint8 in_gac;