* mipsread.c: Many changes for alpha ecoff format:
[deliverable/binutils-gdb.git] / gdb / gdbtypes.c
index c6e41f349e102e6606eaf932a8f55e2ff56b7e21..44e6e9246959cf35ed74915e1640e31f9a986bf7 100644 (file)
@@ -1202,9 +1202,14 @@ recursive_dump_type (type, spaces)
 {
   int idx;
 
-  printfi_filtered (spaces, "type node 0x%x\n", type);
-  printfi_filtered (spaces, "name '%s' (0x%x)\n", TYPE_NAME (type),
-                   TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>");
+  printfi_filtered (spaces, "type node 0x%lx\n", (unsigned long)type);
+  printfi_filtered (spaces, "name '%s' (0x%lx)\n",
+                   TYPE_NAME (type) ? TYPE_NAME (type) : "<NULL>",
+                   (unsigned long)TYPE_NAME (type));
+  if (TYPE_TAG_NAME (type) != NULL)
+    printfi_filtered (spaces, "tagname '%s' (0x%lx)\n",
+                     TYPE_TAG_NAME (type),
+                     (unsigned long)TYPE_TAG_NAME (type));
   printfi_filtered (spaces, "code 0x%x ", TYPE_CODE (type));
   switch (TYPE_CODE (type))
     {
This page took 0.02299 seconds and 4 git commands to generate.