diff options
author | Luis Machado <luis.machado@linaro.org> | 2019-12-30 15:47:10 -0300 |
---|---|---|
committer | Luis Machado <luis.machado@linaro.org> | 2020-01-02 23:15:42 -0300 |
commit | 8133c7dce66f472a67705ad2779dc202a1a6311e (patch) | |
tree | 8a9d5df84c1351de8b3dd220245bea6921a61ead /gdb/target.h | |
parent | 6687b129bcfada5ee26e5c34101d21d32ab8c3b0 (diff) | |
download | gdb-8133c7dce66f472a67705ad2779dc202a1a6311e.zip gdb-8133c7dce66f472a67705ad2779dc202a1a6311e.tar.gz gdb-8133c7dce66f472a67705ad2779dc202a1a6311e.tar.bz2 |
Remove stale references to Cell BE
While reading some code i noticed we're still referencing Cell BE in a couple
parts. This patch removes those.
v2: Update comment in gdb/target.h.
gdb/ChangeLog:
2020-01-02 Luis Machado <luis.machado@linaro.org>
* proc-service.c (get_ps_regcache): Remove reference to obsolete
Cell BE architecture.
* target.h (struct target_ops) <thread_architecture>: Likewise.
Change-Id: I7a9ccc603b00db22a6275bc5ab69e1417148cb72
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/target.h b/gdb/target.h index 8e51516..a8e551c 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -878,11 +878,10 @@ struct target_ops /* Determine current architecture of thread PTID. The target is supposed to determine the architecture of the code where - the target is currently stopped at (on Cell, if a target is in spu_run, - to_thread_architecture would return SPU, otherwise PPC32 or PPC64). - This is architecture used to perform decr_pc_after_break adjustment, - and also determines the frame architecture of the innermost frame. - ptrace operations need to operate according to target_gdbarch (). */ + the target is currently stopped at. The architecture information is + used to perform decr_pc_after_break adjustment, and also to determine + the frame architecture of the innermost frame. ptrace operations need to + operate according to target_gdbarch (). */ virtual struct gdbarch *thread_architecture (ptid_t) TARGET_DEFAULT_RETURN (NULL); |