You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.9 KiB
54 lines
1.9 KiB
commit 8aabe2e254e6a0419db9c6397c4068c69bfd95b0 |
|
Author: Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com> |
|
Date: Wed Sep 21 14:47:43 2016 -0300 |
|
|
|
ppc: Fix return of instruction handlers in ppc_process_record_op63 |
|
|
|
some instruction handlers in ppc_process_record_op63() seem to be missing |
|
return or incorrectly using break. This patch aims to fix that. |
|
|
|
gdb/ChangeLog: |
|
2016-09-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com> |
|
|
|
* rs6000-tdep.c (ppc_process_record_op63): Fix return of instruction |
|
handlers. |
|
|
|
### a/gdb/ChangeLog |
|
### b/gdb/ChangeLog |
|
## -1,3 +1,8 @@ |
|
+2016-09-21 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com> |
|
+ |
|
+ * rs6000-tdep.c (ppc_process_record_op63): Fix return of instruction |
|
+ handlers. |
|
+ |
|
2016-09-21 Tom Tromey <tom@tromey.com> |
|
|
|
PR gdb/20604: |
|
--- a/gdb/rs6000-tdep.c |
|
+++ b/gdb/rs6000-tdep.c |
|
@@ -5399,6 +5399,7 @@ ppc_process_record_op63 (struct gdbarch *gdbarch, struct regcache *regcache, |
|
tdep->ppc_fp0_regnum + PPC_FRT (insn)); |
|
if (PPC_RC (insn)) |
|
record_full_arch_list_add_reg (regcache, tdep->ppc_cr_regnum); |
|
+ return 0; |
|
} |
|
|
|
switch (ext & 0xff) |
|
@@ -5462,7 +5463,7 @@ ppc_process_record_op63 (struct gdbarch *gdbarch, struct regcache *regcache, |
|
if (PPC_RC (insn)) |
|
record_full_arch_list_add_reg (regcache, tdep->ppc_cr_regnum); |
|
record_full_arch_list_add_reg (regcache, tdep->ppc_fpscr_regnum); |
|
- break; |
|
+ return 0; |
|
|
|
case 354: /* DFP Extract Biased Exponent Quad */ |
|
record_full_arch_list_add_reg (regcache, |
|
@@ -5541,7 +5542,7 @@ ppc_process_record_op63 (struct gdbarch *gdbarch, struct regcache *regcache, |
|
if (PPC_RC (insn)) |
|
record_full_arch_list_add_reg (regcache, tdep->ppc_cr_regnum); |
|
record_full_arch_list_add_reg (regcache, tdep->ppc_fpscr_regnum); |
|
- break; |
|
+ return 0; |
|
|
|
case 0: /* Floating Compare Unordered */ |
|
case 32: /* Floating Compare Ordered */
|
|
|