mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 05:00:01 +00:00
2001-08-08 Don Howard <dhoward@redhat.com>
* stabsread.c (read_type): Add support for const and volatile modifiers.
This commit is contained in:
parent
fce3099f60
commit
a1bab801d9
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
@ -2586,7 +2586,7 @@ again:
|
||||
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) */
|
||||
@ -2596,7 +2596,7 @@ again:
|
||||
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 '@':
|
||||
|
Loading…
Reference in New Issue
Block a user