diff options
Diffstat (limited to 'gdb/sparc-tdep.c')
-rw-r--r-- | gdb/sparc-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/sparc-tdep.c b/gdb/sparc-tdep.c index f6dbf3f..2b87d77 100644 --- a/gdb/sparc-tdep.c +++ b/gdb/sparc-tdep.c @@ -294,7 +294,7 @@ sparc_psr_type (struct gdbarch *gdbarch) { struct type *type; - type = init_flags_type ("builtin_type_sparc_psr", 4); + type = arch_flags_type (gdbarch, "builtin_type_sparc_psr", 4); append_flags_type_flag (type, 5, "ET"); append_flags_type_flag (type, 6, "PS"); append_flags_type_flag (type, 7, "S"); @@ -316,7 +316,7 @@ sparc_fsr_type (struct gdbarch *gdbarch) { struct type *type; - type = init_flags_type ("builtin_type_sparc_fsr", 4); + type = arch_flags_type (gdbarch, "builtin_type_sparc_fsr", 4); append_flags_type_flag (type, 0, "NXA"); append_flags_type_flag (type, 1, "DZA"); append_flags_type_flag (type, 2, "UFA"); |