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/ia64-tdep.c | |
parent | f91822c2b9f9fed0c2717b17f380e5216502ea32 (diff) | |
download | gdb-a0cbd6505e9590baddd27d2ce603103d6e77421a.zip gdb-a0cbd6505e9590baddd27d2ce603103d6e77421a.tar.gz gdb-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/ia64-tdep.c')
-rw-r--r-- | gdb/ia64-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 0b448e9..2bac2a6 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -2901,7 +2901,7 @@ ia64_libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache, CORE_ADDR bsp; libunwind_frame_this_id (this_frame, this_cache, &id); - if (frame_id_eq (id, outer_frame_id)) + if (id == outer_frame_id) { (*this_id) = outer_frame_id; return; @@ -3032,7 +3032,7 @@ ia64_libunwind_sigtramp_frame_this_id (struct frame_info *this_frame, struct frame_id id = outer_frame_id; libunwind_frame_this_id (this_frame, this_cache, &id); - if (frame_id_eq (id, outer_frame_id)) + if (id == outer_frame_id) { (*this_id) = outer_frame_id; return; |