[Lldb-commits] [lldb] [lldb] Fix copy-paste typo in Symbol::operator= (PR #200528)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Fri May 29 16:46:39 PDT 2026
https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/200528
None
>From 406670c4a1cbb5abf05881e17267219e5be941db Mon Sep 17 00:00:00 2001
From: Dave Lee <davelee.com at gmail.com>
Date: Fri, 29 May 2026 16:46:19 -0700
Subject: [PATCH] [lldb] Fix copy-paste typo in Symbol::operator=
---
lldb/source/Symbol/Symbol.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/source/Symbol/Symbol.cpp b/lldb/source/Symbol/Symbol.cpp
index b158d6eb61367..308f4b086b0df 100644
--- a/lldb/source/Symbol/Symbol.cpp
+++ b/lldb/source/Symbol/Symbol.cpp
@@ -85,7 +85,7 @@ const Symbol &Symbol::operator=(const Symbol &rhs) {
m_is_debug = rhs.m_is_debug;
m_is_external = rhs.m_is_external;
m_size_is_sibling = rhs.m_size_is_sibling;
- m_size_is_synthesized = rhs.m_size_is_sibling;
+ m_size_is_synthesized = rhs.m_size_is_synthesized;
m_size_is_valid = rhs.m_size_is_valid;
m_demangled_is_synthesized = rhs.m_demangled_is_synthesized;
m_contains_linker_annotations = rhs.m_contains_linker_annotations;
More information about the lldb-commits
mailing list