* jv-valprint.c (java_val_print): Remove dead code.

This commit is contained in:
Tom Tromey 2012-02-23 20:55:47 +00:00
parent 19765f5229
commit 6b446fdfb3
2 changed files with 4 additions and 15 deletions

View File

@ -1,3 +1,7 @@
2012-02-23 Tom Tromey <tromey@redhat.com>
* jv-valprint.c (java_val_print): Remove dead code.
2012-02-23 Tristan Gingold <gingold@adacore.com>
* ada-tasks.c (struct ada_tasks_inferior_data): Add

View File

@ -500,21 +500,6 @@ java_val_print (struct type *type, const gdb_byte *valaddr,
val, options, 0, stream);
break;
}
#if 0
if (options->vtblprint && cp_is_vtbl_ptr_type (type))
{
/* Print the unmangled name if desired. */
/* Print vtable entry - we only get here if we ARE using
-fvtable_thunks. (Otherwise, look under TYPE_CODE_STRUCT.) */
/* Extract an address, assume that it is unsigned. */
print_address_demangle
(gdbarch,
extract_unsigned_integer (valaddr + embedded_offset,
TYPE_LENGTH (type)),
stream, demangle);
break;
}
#endif
addr = unpack_pointer (type, valaddr + embedded_offset);
if (addr == 0)
{