diff options
Diffstat (limited to 'gdb/ppc-linux-tdep.c')
-rw-r--r-- | gdb/ppc-linux-tdep.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/ppc-linux-tdep.c b/gdb/ppc-linux-tdep.c index b1a8959..36cedf1 100644 --- a/gdb/ppc-linux-tdep.c +++ b/gdb/ppc-linux-tdep.c @@ -516,25 +516,25 @@ ppc64_standard_linkage1_target (struct frame_info *frame, static struct core_regset_section ppc_linux_vsx_regset_sections[] = { - { ".reg", 268 }, - { ".reg2", 264 }, - { ".reg-ppc-vmx", 544 }, - { ".reg-ppc-vsx", 256 }, + { ".reg", 268, "general-purpose" }, + { ".reg2", 264, "floating-point" }, + { ".reg-ppc-vmx", 544, "ppc Altivec" }, + { ".reg-ppc-vsx", 256, "POWER7 VSX" }, { NULL, 0} }; static struct core_regset_section ppc_linux_vmx_regset_sections[] = { - { ".reg", 268 }, - { ".reg2", 264 }, - { ".reg-ppc-vmx", 544 }, + { ".reg", 268, "general-purpose" }, + { ".reg2", 264, "floating-point" }, + { ".reg-ppc-vmx", 544, "ppc Altivec" }, { NULL, 0} }; static struct core_regset_section ppc_linux_fp_regset_sections[] = { - { ".reg", 268 }, - { ".reg2", 264 }, + { ".reg", 268, "general-purpose" }, + { ".reg2", 264, "floating-point" }, { NULL, 0} }; |