From owner-freebsd-commit Mon Feb 19 20:07:57 1996 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA17730 for freebsd-commit-outgoing; Mon, 19 Feb 1996 20:07:57 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA17710 for cvs-all-outgoing; Mon, 19 Feb 1996 20:07:52 -0800 (PST) Received: (from jdp@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA17683 Mon, 19 Feb 1996 20:07:37 -0800 (PST) Date: Mon, 19 Feb 1996 20:07:37 -0800 (PST) From: John Polstra Message-Id: <199602200407.UAA17683@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-lib Subject: cvs commit: src/lib/csu/i386 c++rt0.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk jdp 96/02/19 20:07:35 Modified: lib/csu/i386 c++rt0.c Log: Changed the dimensions of __CTOR_LIST__ and __DTOR_LIST__ from 0 to 2. This makes them agree with the declarations in libgcc, and clears the way once again for linking c++rt0.o into all libraries, and eliminating CPLUSPLUSLIB from . (I have not made that change yet, because there is still a bootstrapping problem for "make world".) Also, removed a check which ensured that the constructor count in the first word of __CTOR_LIST__ was greater than zero before traversing the list. I had added that check earlier, but it is no longer necessary, now that there is guaranteed to be at least 2 words in __CTOR_LIST__. Revision Changes Path 1.5 +6 -14 src/lib/csu/i386/c++rt0.c