Unverified Commit 66401c2f authored by Alex Langford's avatar Alex Langford Committed by GitHub
Browse files

[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.
parent 0135cf99
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -54,6 +54,4 @@ class TestClearSBValueNonAddressableBits(TestBase):

        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())