diff options
author | Carl Love <cel@us.ibm.com> | 2021-11-15 20:31:06 +0000 |
---|---|---|
committer | Carl Love <cel@us.ibm.com> | 2021-11-18 10:17:31 -0600 |
commit | 90ad9178f19221a836cae3b4b2298ee0a968017a (patch) | |
tree | 4610ce75897ca7be088511b63fb22ee303f09792 /gdb/rs6000-tdep.c | |
parent | 2888fe8d193bd1e82e1e155b9795308184fe923b (diff) | |
download | gdb-90ad9178f19221a836cae3b4b2298ee0a968017a.zip gdb-90ad9178f19221a836cae3b4b2298ee0a968017a.tar.gz gdb-90ad9178f19221a836cae3b4b2298ee0a968017a.tar.bz2 |
gdb: PowerPC fix gdb.base/break-interp.exp
This patch fixes eight test failures on PowerPC for the test
gdb.base/break-interp.exp. The patch adds a funtion and registers it to
setup the displaced stepping for ppc-linux platform. The patch moves the
struct ppc_inferior_data to the ppc-tdep.h include file to make it visible
to the ppc-linux-tdep.c and rs6000-tdep.c files. Additionally the function
get_ppc_per_inferior is made external in ppc-tdep.h to make it visible in
both files.
Tested on Power 10 ppc64le-linux with no regressions.
Diffstat (limited to 'gdb/rs6000-tdep.c')
-rw-r--r-- | gdb/rs6000-tdep.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c index 0d61894..87a494e 100644 --- a/gdb/rs6000-tdep.c +++ b/gdb/rs6000-tdep.c @@ -155,19 +155,11 @@ static const char *powerpc_vector_abi_string = "auto"; /* PowerPC-related per-inferior data. */ -struct ppc_inferior_data -{ - /* This is an optional in case we add more fields to ppc_inferior_data, we - don't want it instantiated as soon as we get the ppc_inferior_data for an - inferior. */ - gdb::optional<displaced_step_buffers> disp_step_buf; -}; - static inferior_key<ppc_inferior_data> ppc_inferior_data_key; /* Get the per-inferior PowerPC data for INF. */ -static ppc_inferior_data * +ppc_inferior_data * get_ppc_per_inferior (inferior *inf) { ppc_inferior_data *per_inf = ppc_inferior_data_key.get (inf); |