Typo in Fri Sep 23 15:15:31 1994 changes for elfcode.h
Ian Lance Taylor
ian@cygnus.com
Sun Sep 25 19:49:00 GMT 1994
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
More information about the Gas2
mailing list