diff options
author | Yao Qi <yao@codesourcery.com> | 2011-04-07 04:18:02 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2011-04-07 04:18:02 +0000 |
commit | bd18283a08463e34d632cb27a21c2962eecf65cd (patch) | |
tree | 40060d26fd5b981e2f17c50b1f7163b36bb92fe4 /gdb/arm-tdep.h | |
parent | 8c8dba6d3d8f6509729107b34385d98e3301621e (diff) | |
download | gdb-bd18283a08463e34d632cb27a21c2962eecf65cd.zip gdb-bd18283a08463e34d632cb27a21c2962eecf65cd.tar.gz gdb-bd18283a08463e34d632cb27a21c2962eecf65cd.tar.bz2 |
2011-04-07 Yao Qi <yao@codesourcery.com>
* arm-linux-tdep.c (arm_linux_copy_svc): Remove parameters INSN
and TO.
* arm-tdep.c (cleanup_svc): Handle variable instruction size.
(arm_copy_svc): Remove parameters INSN and TO.
(decode_svc_copro): Update caller.
* arm-tdep.h (struct displaced_step_closure): Remove parameters
from function pointer `copy_svc_os'.
Diffstat (limited to 'gdb/arm-tdep.h')
-rw-r--r-- | gdb/arm-tdep.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/arm-tdep.h b/gdb/arm-tdep.h index f047351..fe27c7f 100644 --- a/gdb/arm-tdep.h +++ b/gdb/arm-tdep.h @@ -258,8 +258,7 @@ struct displaced_step_closure { /* If non-NULL, override generic SVC handling (e.g. for a particular OS). */ - int (*copy_svc_os) (struct gdbarch *gdbarch, uint32_t insn, CORE_ADDR to, - struct regcache *regs, + int (*copy_svc_os) (struct gdbarch *gdbarch, struct regcache *regs, struct displaced_step_closure *dsc); } svc; } u; |