public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] gdb: fix build failure in amd-dbgapi-target.c
@ 2023-08-23 14:59 Lancelot Six
  2023-08-23 15:23 ` Pedro Alves
  2023-08-23 17:42 ` Tom Tromey
  0 siblings, 2 replies; 4+ messages in thread
From: Lancelot Six @ 2023-08-23 14:59 UTC (permalink / raw)
  To: gdb-patches; +Cc: lsix, Lancelot Six

Since b080fe54fb3 "gdb: add inferior-specific breakpoints", the
breakpoint class has an "inferior" member used to handle
inferior-specific breakpoints.  This creates a compilation error
in amd_dbgapi_target_breakpoint::check_status which declares a local
variable "inferior *inf".

Fix this by using "struct inferior *inf" instead.

Change-Id: Icc4dc1ba96c7d3ff9d33f9cb384ffcf64eba26fb
---
 gdb/amd-dbgapi-target.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/amd-dbgapi-target.c b/gdb/amd-dbgapi-target.c
index e90628c8183..22c269b7992 100644
--- a/gdb/amd-dbgapi-target.c
+++ b/gdb/amd-dbgapi-target.c
@@ -398,7 +398,7 @@ amd_dbgapi_target_breakpoint::re_set ()
 void
 amd_dbgapi_target_breakpoint::check_status (struct bpstat *bs)
 {
-  inferior *inf = current_inferior ();
+  struct inferior *inf = current_inferior ();
   amd_dbgapi_inferior_info *info = get_amd_dbgapi_inferior_info (inf);
   amd_dbgapi_status_t status;
 

base-commit: 3ce8f906be7a55d8c0375e6d360cc53b456d86ae
-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-08-23 17:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-23 14:59 [PATCH] gdb: fix build failure in amd-dbgapi-target.c Lancelot Six
2023-08-23 15:23 ` Pedro Alves
2023-08-23 15:45   ` Six, Lancelot
2023-08-23 17:42 ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).