2001-01-15 Daniel Jacobowitz <drow@mvista.com>
authorDaniel Jacobowitz <drow@false.org>
Tue, 15 Jan 2002 16:47:17 +0000 (16:47 +0000)
committerDaniel Jacobowitz <drow@false.org>
Tue, 15 Jan 2002 16:47:17 +0000 (16:47 +0000)
        * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
        to make_cv_type.

gdb/ChangeLog
gdb/stabsread.c

index 9b66955c569ea8067d29ac037a8a1ef02c40f39f..5347d1f50a53c10fbbf10a87ac0033a9c8c36ffc 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-15  Daniel Jacobowitz  <drow@mvista.com>
+
+       * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
+       to make_cv_type.
+
 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
 
        * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
index 25937b1f4551cf1a45d491d727291a598a9827c7..45075a62096d8b52b316d278ae7a33e6b37cd40a 100644 (file)
@@ -2586,7 +2586,8 @@ again:
       if (type_descriptor == 'c' && !os9k_stabs)
        return error_type (pp, objfile);
       type = read_type (pp, objfile);
-      type = make_cv_type (1, TYPE_VOLATILE (type), type, 0);
+      type = make_cv_type (1, TYPE_VOLATILE (type), type,
+                          dbx_lookup_type (typenums));
       break;
 
     case 'B':                  /* Volatile qual on some type (Sun) */
@@ -2596,7 +2597,8 @@ again:
       if (type_descriptor == 'i' && !os9k_stabs)
        return error_type (pp, objfile);
       type = read_type (pp, objfile);
-      type = make_cv_type (TYPE_CONST (type), 1, type, 0);
+      type = make_cv_type (TYPE_CONST (type), 1, type,
+                          dbx_lookup_type (typenums));
       break;
 
     case '@':