[Lldb-commits] [lldb] 66401c2 - [lldb] Support arm64e in TestClearSBValueNonAddressableBits.py (#194748)

via lldb-commits lldb-commits at lists.llvm.org
Fri May 1 10:21:56 PDT 2026


Author: Alex Langford
Date: 2026-05-01T10:21:51-07:00
New Revision: 66401c2fa6193ef70ce7ab076e26a53d88605da3

URL: https://github.com/llvm/llvm-project/commit/66401c2fa6193ef70ce7ab076e26a53d88605da3
DIFF: https://github.com/llvm/llvm-project/commit/66401c2fa6193ef70ce7ab076e26a53d88605da3.diff

LOG: [lldb] Support arm64e in TestClearSBValueNonAddressableBits.py (#194748)

These values are expected to be different on arm64e where the raw
pointer value should have all the tagged bits and the stripped pointer
shouldn't.

Added: 
    

Modified: 
    lldb/test/API/clear-sbvalue-nonaddressable-bits/TestClearSBValueNonAddressableBits.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/clear-sbvalue-nonaddressable-bits/TestClearSBValueNonAddressableBits.py b/lldb/test/API/clear-sbvalue-nonaddressable-bits/TestClearSBValueNonAddressableBits.py
index 382b0e7a81d23..ea03f26efb2d0 100644
--- a/lldb/test/API/clear-sbvalue-nonaddressable-bits/TestClearSBValueNonAddressableBits.py
+++ b/lldb/test/API/clear-sbvalue-nonaddressable-bits/TestClearSBValueNonAddressableBits.py
@@ -54,6 +54,4 @@ def test(self):
 
         main_p = frame.FindVariable("main_p")
         main_invalid_p = frame.FindVariable("main_invalid_p")
-        self.assertEqual(
-            main_p.GetValueAsUnsigned(), main_invalid_p.GetValueAsAddress()
-        )
+        self.assertEqual(main_p.GetValueAsAddress(), main_invalid_p.GetValueAsAddress())


        


More information about the lldb-commits mailing list