This is the mail archive of the gas2@sourceware.cygnus.com mailing list for the gas2 project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
From: hjl@nynexst.com (H.J. Lu) Date: Sun, 25 Sep 94 20:37:23 EDT - BFD_ASSERT (phdr_map == phdr_off + phdr_size); + BFD_ASSERT (phdr_map < phdr_off + phdr_size); ^^^ Should that be + BFD_ASSERT (phdr_map <= phdr_off + phdr_size); Yes, it certainly should. I checked that in for somebody in a hurry before leaving for the weekend--I should have known better. Every time you think you don't need to test something, you get nailed. Ian