diff options
author | Tom Tromey <tom@tromey.com> | 2022-07-25 14:06:33 -0300 |
---|---|---|
committer | Bruno Larsen <blarsen@redhat.com> | 2022-10-10 11:57:10 +0200 |
commit | a0cbd6505e9590baddd27d2ce603103d6e77421a (patch) | |
tree | f4681765647d430ce9809c3a979f85511e0cc8bc /gdb/python/py-frame.c | |
parent | f91822c2b9f9fed0c2717b17f380e5216502ea32 (diff) | |
download | binutils-a0cbd6505e9590baddd27d2ce603103d6e77421a.zip binutils-a0cbd6505e9590baddd27d2ce603103d6e77421a.tar.gz binutils-a0cbd6505e9590baddd27d2ce603103d6e77421a.tar.bz2 |
Remove frame_id_eq
This replaces frame_id_eq with operator== and operator!=. I wrote
this for a version of this series that I later abandoned; but since it
simplifies the code, I left this patch in.
Approved-by: Tom Tomey <tom@tromey.com>
Diffstat (limited to 'gdb/python/py-frame.c')
-rw-r--r-- | gdb/python/py-frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-frame.c b/gdb/python/py-frame.c index 8bd2e0b..0240da9 100644 --- a/gdb/python/py-frame.c +++ b/gdb/python/py-frame.c @@ -701,7 +701,7 @@ frapy_richcompare (PyObject *self, PyObject *other, int op) frame_object *other_frame = (frame_object *) other; if (self_frame->frame_id_is_next == other_frame->frame_id_is_next - && frame_id_eq (self_frame->frame_id, other_frame->frame_id)) + && self_frame->frame_id == other_frame->frame_id) result = Py_EQ; else result = Py_NE; |