[PATCH 9/9] dbghelp/dwarf: Handle C++ rvalue reference type as a reference

Eric Pouech eric.pouech at gmail.com
Fri Sep 17 03:34:09 CDT 2021


(as we don't handle C++ references yet, it'll be a pointer at the end)

---
 dlls/dbghelp/dwarf.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c
index 2c9b3a15719..f574cb6c87a 100644
--- a/dlls/dbghelp/dwarf.c
+++ b/dlls/dbghelp/dwarf.c
@@ -2343,6 +2343,7 @@ static void dwarf2_load_one_entry(dwarf2_debug_info_t* di)
         dwarf2_parse_unspecified_type(di);
         break;
     case DW_TAG_reference_type:
+    case DW_TAG_rvalue_reference_type:
         dwarf2_parse_reference_type(di);
         break;
     case DW_TAG_enumeration_type:




More information about the wine-devel mailing list