+2001-08-08 Don Howard <dhoward@redhat.com>
+
+ * stabsread.c (read_type): Add support for const and volatile
+ modifiers.
+
2001-08-02 Daniel Jacobowitz <drow@mvista.com>
* core-regset.c (fetch_core_registers): Remove HAVE_GREGSET_T
if (type_descriptor == 'c' && !os9k_stabs)
return error_type (pp, objfile);
type = read_type (pp, objfile);
- /* FIXME! For now, we ignore const and volatile qualifiers. */
+ type = make_cv_type (1, TYPE_VOLATILE (type), type, 0);
break;
case 'B': /* Volatile qual on some type (Sun) */
if (type_descriptor == 'i' && !os9k_stabs)
return error_type (pp, objfile);
type = read_type (pp, objfile);
- /* FIXME! For now, we ignore const and volatile qualifiers. */
+ type = make_cv_type (TYPE_CONST (type), 1, type, 0);
break;
case '@':