From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Jim Blandy Cc: gdb-patches@sources.redhat.com Subject: Re: RFA: correctly detect overlapping overlays Date: Sun, 12 Aug 2001 19:13:00 -0000 Message-id: <3B7737C3.8070805@cygnus.com> References: <20010812184312.C90245E9DA@zwingli.cygnus.com> X-SW-Source: 2001-08/msg00134.html > + CORE_ADDR a_start = a->vma; > + CORE_ADDR a_end = a->vma + bfd_get_section_size_before_reloc (a); > + CORE_ADDR b_start = b->vma; > + CORE_ADDR b_end = b->vma + bfd_get_section_size_before_reloc (b); Jim, just a reminder on coding style. There isn't any reason to (and probably good reason to not) lay out the code so carefully. It just makes the task of someone running indent over the code all the more confusing. Andrew