From d790b6b7494e98c4e40be6154c20834d6c8e95ac Mon Sep 17 00:00:00 2001 From: jdp Date: Sat, 13 Mar 1999 01:35:44 +0000 Subject: Reverse the order of processing object files within an executable or shared library when invoking global constructors and destructors. For constructors, the object files used to be processed from first to last; now they're done from last to first. (Destructors are done in the opposite order, as required by the C++ standard.) This makes us consistent with standard gcc and egcs compilers. It also eliminates ordering differences between dynamic and static executables. Bump the value of __FreeBSD_version to 400002 to reflect this change. --- lib/csu/common/crtbegin.c | 6 +++--- lib/csu/i386-elf/crtbegin.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/csu') diff --git a/lib/csu/common/crtbegin.c b/lib/csu/common/crtbegin.c index 2e06dc8..ddc8b80 100644 --- a/lib/csu/common/crtbegin.c +++ b/lib/csu/common/crtbegin.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: crtbegin.c,v 1.1.1.1 1998/03/07 20:27:10 jdp Exp $ + * $Id: crtbegin.c,v 1.2 1999/03/12 17:33:27 jdp Exp $ */ #include @@ -41,6 +41,8 @@ do_ctors(void) fptr *fpp; for(fpp = ctor_list + 1; *fpp != 0; ++fpp) + ; + while(--fpp > ctor_list) (**fpp)(); } @@ -50,8 +52,6 @@ do_dtors(void) fptr *fpp; for(fpp = dtor_list + 1; *fpp != 0; ++fpp) - ; - while(--fpp > dtor_list) (**fpp)(); } diff --git a/lib/csu/i386-elf/crtbegin.c b/lib/csu/i386-elf/crtbegin.c index 2e06dc8..ddc8b80 100644 --- a/lib/csu/i386-elf/crtbegin.c +++ b/lib/csu/i386-elf/crtbegin.c @@ -22,7 +22,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: crtbegin.c,v 1.1.1.1 1998/03/07 20:27:10 jdp Exp $ + * $Id: crtbegin.c,v 1.2 1999/03/12 17:33:27 jdp Exp $ */ #include @@ -41,6 +41,8 @@ do_ctors(void) fptr *fpp; for(fpp = ctor_list + 1; *fpp != 0; ++fpp) + ; + while(--fpp > ctor_list) (**fpp)(); } @@ -50,8 +52,6 @@ do_dtors(void) fptr *fpp; for(fpp = dtor_list + 1; *fpp != 0; ++fpp) - ; - while(--fpp > dtor_list) (**fpp)(); } -- cgit v1.1