[Lldb-commits] [lldb] [lldb] [ObjC runtime] Don't cast to signed when left shifting (PR #86605)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 27 09:54:16 PDT 2024
================
@@ -3154,7 +3154,7 @@ AppleObjCRuntimeV2::TaggedPointerVendorExtended::GetClassDescriptor(
<< m_objc_debug_taggedpointer_ext_payload_lshift) >>
m_objc_debug_taggedpointer_ext_payload_rshift);
int64_t data_payload_signed =
- ((int64_t)((int64_t)unobfuscated
+ ((int64_t)((uint64_t)unobfuscated
<< m_objc_debug_taggedpointer_ext_payload_lshift) >>
----------------
bulbazord wrote:
Makes sense to me. I think this is fine then.
https://github.com/llvm/llvm-project/pull/86605
More information about the lldb-commits
mailing list