Skip to content

Commit 8e09c3c

Browse files
committed
[lldb] Update genrated bindings
1 parent 0c837b9 commit 8e09c3c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lldb/bindings/python/static-binding/LLDBWrapPython.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61056,12 +61056,12 @@ SWIGINTERN PyObject *_wrap_SBTarget_SetModuleLoadAddress(PyObject *self, PyObjec
6105661056
PyObject *resultobj = 0;
6105761057
lldb::SBTarget *arg1 = (lldb::SBTarget *) 0 ;
6105861058
lldb::SBModule arg2 ;
61059-
int64_t arg3 ;
61059+
uint64_t arg3 ;
6106061060
void *argp1 = 0 ;
6106161061
int res1 = 0 ;
6106261062
void *argp2 ;
6106361063
int res2 = 0 ;
61064-
long long val3 ;
61064+
unsigned long long val3 ;
6106561065
int ecode3 = 0 ;
6106661066
PyObject *swig_obj[3] ;
6106761067
lldb::SBError result;
@@ -61085,11 +61085,11 @@ SWIGINTERN PyObject *_wrap_SBTarget_SetModuleLoadAddress(PyObject *self, PyObjec
6108561085
if (SWIG_IsNewObj(res2)) delete temp;
6108661086
}
6108761087
}
61088-
ecode3 = SWIG_AsVal_long_SS_long(swig_obj[2], &val3);
61088+
ecode3 = SWIG_AsVal_unsigned_SS_long_SS_long(swig_obj[2], &val3);
6108961089
if (!SWIG_IsOK(ecode3)) {
61090-
SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "SBTarget_SetModuleLoadAddress" "', argument " "3"" of type '" "int64_t""'");
61090+
SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "SBTarget_SetModuleLoadAddress" "', argument " "3"" of type '" "uint64_t""'");
6109161091
}
61092-
arg3 = static_cast< int64_t >(val3);
61092+
arg3 = static_cast< uint64_t >(val3);
6109361093
{
6109461094
SWIG_PYTHON_THREAD_BEGIN_ALLOW;
6109561095
result = (arg1)->SetModuleLoadAddress(arg2,arg3);
@@ -90556,7 +90556,7 @@ static PyMethodDef SwigMethods[] = {
9055690556
{ "SBTarget_GetMaximumNumberOfChildrenToDisplay", _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay, METH_O, "SBTarget_GetMaximumNumberOfChildrenToDisplay(SBTarget self) -> uint32_t"},
9055790557
{ "SBTarget_SetSectionLoadAddress", _wrap_SBTarget_SetSectionLoadAddress, METH_VARARGS, "SBTarget_SetSectionLoadAddress(SBTarget self, SBSection section, lldb::addr_t section_base_addr) -> SBError"},
9055890558
{ "SBTarget_ClearSectionLoadAddress", _wrap_SBTarget_ClearSectionLoadAddress, METH_VARARGS, "SBTarget_ClearSectionLoadAddress(SBTarget self, SBSection section) -> SBError"},
90559-
{ "SBTarget_SetModuleLoadAddress", _wrap_SBTarget_SetModuleLoadAddress, METH_VARARGS, "SBTarget_SetModuleLoadAddress(SBTarget self, SBModule module, int64_t sections_offset) -> SBError"},
90559+
{ "SBTarget_SetModuleLoadAddress", _wrap_SBTarget_SetModuleLoadAddress, METH_VARARGS, "SBTarget_SetModuleLoadAddress(SBTarget self, SBModule module, uint64_t sections_offset) -> SBError"},
9056090560
{ "SBTarget_ClearModuleLoadAddress", _wrap_SBTarget_ClearModuleLoadAddress, METH_VARARGS, "SBTarget_ClearModuleLoadAddress(SBTarget self, SBModule module) -> SBError"},
9056190561
{ "SBTarget_FindFunctions", _wrap_SBTarget_FindFunctions, METH_VARARGS, "\n"
9056290562
"SBTarget_FindFunctions(SBTarget self, char const * name, uint32_t name_type_mask=eFunctionNameTypeAny) -> SBSymbolContextList\n"

lldb/bindings/python/static-binding/lldb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10639,7 +10639,7 @@ def ClearSectionLoadAddress(self, section):
1063910639
return _lldb.SBTarget_ClearSectionLoadAddress(self, section)
1064010640

1064110641
def SetModuleLoadAddress(self, module, sections_offset):
10642-
r"""SetModuleLoadAddress(SBTarget self, SBModule module, int64_t sections_offset) -> SBError"""
10642+
r"""SetModuleLoadAddress(SBTarget self, SBModule module, uint64_t sections_offset) -> SBError"""
1064310643
return _lldb.SBTarget_SetModuleLoadAddress(self, module, sections_offset)
1064410644

1064510645
def ClearModuleLoadAddress(self, module):

0 commit comments

Comments
 (0)