pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lldb: add patch, submitted upstream. fail a little further.



Module Name:	pkgsrc-wip
Committed By:	nikita <nikita%NetBSD.org@localhost>
Pushed By:	nikita
Date:		Sat May 6 13:00:05 2023 +0200
Changeset:	4531bf6d16bb47dde9d358e6f08516926b8ad76b

Modified Files:
	lldb/distinfo
Added Files:
	lldb/patches/patch-source_Plugins_Process_NetBSD_NativeRegisterContextNetBSD__x86__64.cpp

Log Message:
lldb: add patch, submitted upstream. fail a little further.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=4531bf6d16bb47dde9d358e6f08516926b8ad76b

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 lldb/distinfo                                      |  1 +
 ...NetBSD_NativeRegisterContextNetBSD__x86__64.cpp | 24 ++++++++++++++++++++++
 2 files changed, 25 insertions(+)

diffs:
diff --git a/lldb/distinfo b/lldb/distinfo
index 6f4686d4aa..436a1c9ffe 100644
--- a/lldb/distinfo
+++ b/lldb/distinfo
@@ -11,3 +11,4 @@ SHA1 (patch-source_API_CMakeLists.txt) = 23a7b24632f937a4541863aff6a7591255cafe4
 SHA1 (patch-source_Host_netbsd_HostNetBSD.cpp) = 8c19657d90ffea176b1297331fd23a8b565c6f1d
 SHA1 (patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.cpp) = 15c6d8399198de567b4e901533e1b1f77d9e348f
 SHA1 (patch-source_Plugins_Process_NetBSD_NativeProcessNetBSD.h) = 26a7298b835b97b89257975f7e87f0f8225e5f99
+SHA1 (patch-source_Plugins_Process_NetBSD_NativeRegisterContextNetBSD__x86__64.cpp) = 23ff593c187501dc91c3f2f49fd341176e75a264
diff --git a/lldb/patches/patch-source_Plugins_Process_NetBSD_NativeRegisterContextNetBSD__x86__64.cpp b/lldb/patches/patch-source_Plugins_Process_NetBSD_NativeRegisterContextNetBSD__x86__64.cpp
new file mode 100644
index 0000000000..b309183207
--- /dev/null
+++ b/lldb/patches/patch-source_Plugins_Process_NetBSD_NativeRegisterContextNetBSD__x86__64.cpp
@@ -0,0 +1,24 @@
+$NetBSD$
+
+submitted upstream as https://reviews.llvm.org/D150032
+
+--- source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp.orig	2023-05-06 11:31:19.992492217 +0200
++++ source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp	2023-05-06 11:32:24.079405876 +0200
+@@ -409,7 +409,7 @@
+     return error;
+   }
+ 
+-  RegSetKind set = opt_set.getValue();
++  RegSetKind set = *opt_set;
+   error = ReadRegisterSet(set);
+   if (error.Fail())
+     return error;
+@@ -476,7 +476,7 @@
+     return error;
+   }
+ 
+-  RegSetKind set = opt_set.getValue();
++  RegSetKind set = *opt_set;
+   uint64_t new_xstate_bv = 0;
+ 
+   error = ReadRegisterSet(set);


Home | Main Index | Thread Index | Old Index