From 2541c7cf085237f2d116a54a6e4ed6f6a7a065bf Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 4 Jul 2001 16:00:08 +0000 Subject: [PATCH] * dwarf2read.c (dwarf2_build_psymtabs_hard): Remove extraneous code in loop condition. This seemed to be trying to round info_ptr up to the next four-byte boundary, but that's not what it actually did. If we discover the problem the old code was really trying to address, we can fix it properly. --- gdb/ChangeLog | 8 ++++++++ gdb/dwarf2read.c | 3 +-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1626a6c1f9..d6694ed45b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2001-07-04 Jim Blandy + + * dwarf2read.c (dwarf2_build_psymtabs_hard): Remove extraneous + code in loop condition. This seemed to be trying to round + info_ptr up to the next four-byte boundary, but that's not what it + actually did. If we discover the problem the old code was really + trying to address, we can fix it properly. + 2001-07-03 Michael Snyder * thread_db (find_new_threads_callback, thread_db_thread_alive, diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 07e15005e1..136f497576 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -980,8 +980,7 @@ dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline) obstack_init (&dwarf2_tmp_obstack); back_to = make_cleanup (dwarf2_free_tmp_obstack, NULL); - while ((unsigned int) (info_ptr - dwarf_info_buffer) - + ((info_ptr - dwarf_info_buffer) % 4) < dwarf_info_size) + while (info_ptr < dwarf_info_buffer + dwarf_info_size) { struct comp_unit_head cu_header; beg_of_comp_unit = info_ptr;