2010-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mono / dis / dump.c
index e4f63fa7319828cb005bcd0bf048067acc8cf871..327218e168622d90b3a8d686033d49c66aa6b4cf 100644 (file)
@@ -1003,7 +1003,7 @@ dump_table_exported (MonoImage *m)
        int i;
        const char *name, *nspace;
        char *impl;
-       guint32 index;
+       guint32 index, flags;
        fprintf (output, "ExportedType Table (1..%d)\n", t->rows);
 
        for (i = 1; i <= t->rows; i++) {
@@ -1012,7 +1012,8 @@ dump_table_exported (MonoImage *m)
                nspace = mono_metadata_string_heap (m, cols [MONO_EXP_TYPE_NAMESPACE]);
                impl = get_manifest_implementation (m, cols [MONO_EXP_TYPE_IMPLEMENTATION]);
                index = cols [MONO_EXP_TYPE_TYPEDEF];
-               fprintf (output, "%d: %s%s%s is in %s, token %x\n", i, nspace, *nspace ? "." : "", name, impl, index);
+               flags = cols [MONO_EXP_TYPE_FLAGS];
+               fprintf (output, "%d: %s%s%s is in %s, index=%x, flags=0x%x\n", i, nspace, *nspace ? "." : "", name, impl, index, flags);
                g_free (impl);
        }