diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_breakpoint.py')
-rw-r--r-- | lldb/test/python_api/default-constructor/sb_breakpoint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_breakpoint.py b/lldb/test/python_api/default-constructor/sb_breakpoint.py index 1efe131bfaa..2c05990edae 100644 --- a/lldb/test/python_api/default-constructor/sb_breakpoint.py +++ b/lldb/test/python_api/default-constructor/sb_breakpoint.py @@ -8,8 +8,8 @@ import lldb def fuzz_obj(obj): obj.GetID() obj.ClearAllBreakpointSites() - obj.FindLocationByAddress(sys.maxint) - obj.FindLocationIDByAddress(sys.maxint) + obj.FindLocationByAddress(sys.maxsize) + obj.FindLocationIDByAddress(sys.maxsize) obj.FindLocationByID(0) obj.GetLocationAtIndex(0) obj.SetEnabled(True) |