mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-30 15:56:36 +08:00
Don't use PyLong_FromLongLong
This changes gdb to avoid PyLong_FromLongLong, preferring to use gdb_py_object_from_longest instead. gdb/ChangeLog 2020-09-15 Tom Tromey <tromey@adacore.com> * python/py-infevents.c (create_register_changed_event_object): Use gdb_py_object_from_longest. * python/py-exitedevent.c (create_exited_event_object): Use gdb_py_object_from_longest.
This commit is contained in:
@ -30,7 +30,7 @@ create_exited_event_object (const LONGEST *exit_code, struct inferior *inf)
|
||||
|
||||
if (exit_code)
|
||||
{
|
||||
gdbpy_ref<> exit_code_obj (PyLong_FromLongLong (*exit_code));
|
||||
gdbpy_ref<> exit_code_obj = gdb_py_object_from_longest (*exit_code);
|
||||
|
||||
if (exit_code_obj == NULL)
|
||||
return NULL;
|
||||
|
@ -76,7 +76,7 @@ create_register_changed_event_object (struct frame_info *frame,
|
||||
if (evpy_add_attribute (event.get (), "frame", frame_obj.get ()) < 0)
|
||||
return NULL;
|
||||
|
||||
gdbpy_ref<> regnum_obj (PyLong_FromLongLong (regnum));
|
||||
gdbpy_ref<> regnum_obj = gdb_py_object_from_longest (regnum);
|
||||
if (regnum_obj == NULL)
|
||||
return NULL;
|
||||
|
||||
|
Reference in New Issue
Block a user