2001-01-15 Daniel Jacobowitz <drow@mvista.com>

* stabsread.c (read_type): Pass dbx_lookup_type (typenums)
        to make_cv_type.
This commit is contained in:
Daniel Jacobowitz 2002-01-15 16:47:17 +00:00
parent bfae80f222
commit d7242108d7
2 changed files with 9 additions and 2 deletions

View 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

View 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 '@':