X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fdis%2Fdump.c;h=327218e168622d90b3a8d686033d49c66aa6b4cf;hb=c29282519b48d5fbfd73dd2bd1306a7844174f29;hp=e4f63fa7319828cb005bcd0bf048067acc8cf871;hpb=0b7db61902528469d1c390ec4ebc05e98ca06f16;p=mono.git diff --git a/mono/dis/dump.c b/mono/dis/dump.c index e4f63fa7319..327218e1686 100644 --- a/mono/dis/dump.c +++ b/mono/dis/dump.c @@ -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); }