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/proc-service.c | |
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/proc-service.c')
-rw-r--r-- | gdb/proc-service.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/proc-service.c b/gdb/proc-service.c index 86b3f05..7593ffe 100644 --- a/gdb/proc-service.c +++ b/gdb/proc-service.c @@ -129,10 +129,7 @@ ps_pdwrite (struct ps_prochandle *ph, psaddr_t addr, /* Get a regcache for LWPID using its inferior's "main" architecture, which is the register set libthread_db expects to be using. In multi-arch debugging scenarios, the thread's architecture may - differ from the inferior's "main" architecture. E.g., in the Cell - combined debugger, if GDB happens to interrupt SPU code, the - thread's architecture is SPU, and the main architecture is - PowerPC. */ + differ from the inferior's "main" architecture. */ static struct regcache * get_ps_regcache (struct ps_prochandle *ph, lwpid_t lwpid) |