diff options
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index b4ed734..317c7d0 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -8938,10 +8938,10 @@ _initialize_mips_tdep () /* Create feature sets with the appropriate properties. The values are not important. */ - mips_tdesc_gp32 = allocate_target_description (); + mips_tdesc_gp32 = allocate_target_description ().release (); set_tdesc_property (mips_tdesc_gp32, PROPERTY_GP32, ""); - mips_tdesc_gp64 = allocate_target_description (); + mips_tdesc_gp64 = allocate_target_description ().release (); set_tdesc_property (mips_tdesc_gp64, PROPERTY_GP64, ""); /* Add root prefix command for all "set mips"/"show mips" commands. */ |