From 6997fbcd06f858800baaa5c0027396c78e0b41c4 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Tue, 14 Jan 2025 14:16:21 -0500 Subject: gdb/amd-dbgapi: use gdb::unordered_map Since we have gdb::unordered_map, swap std::unordered_map for that. Change-Id: If2ef652fe18c1a440a25cff6131d29e37091bdbe Approved-By: Lancelot Six (amdgpu) --- gdb/amd-dbgapi-target.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gdb/amd-dbgapi-target.c') diff --git a/gdb/amd-dbgapi-target.c b/gdb/amd-dbgapi-target.c index 2bb79ac..153a35f 100644 --- a/gdb/amd-dbgapi-target.c +++ b/gdb/amd-dbgapi-target.c @@ -24,6 +24,7 @@ #include "cli/cli-cmds.h" #include "cli/cli-decode.h" #include "cli/cli-style.h" +#include "gdbsupport/unordered_map.h" #include "inf-loop.h" #include "inferior.h" #include "objfiles.h" @@ -207,7 +208,7 @@ struct amd_dbgapi_inferior_info bool enabled = false; } precise_memory; - std::unordered_map breakpoint_map; @@ -221,7 +222,7 @@ struct amd_dbgapi_inferior_info wave_info objects are added when we first see the wave, and removed from a thread_deleted observer. */ - std::unordered_map + gdb::unordered_map wave_info_map; }; -- cgit v1.1