Message-ID: <19990815170554.A17468@tabor.ta.jcu.cz> Date: Sun, 15 Aug 1999 17:05:54 +0200 From: Jan Hubicka To: djgpp AT delorie DOT com Subject: Re: New gcc 2.95 References: <7oqfvr$qpu$1 AT reader1 DOT wxs DOT nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93i In-Reply-To: ; from Eli Zaretskii on Thu, Aug 12, 1999 at 10:58:39AM +0300 Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Thu, Aug 12, 1999 at 10:58:39AM +0300, Eli Zaretskii wrote: > > On Wed, 11 Aug 1999, "Bas Hamstra" > > I donwloaded some components of GCC 2.95 (binaries of gcc, gxx and the libs, > > I believe) and copied them onto the old djgpp package (latest official > > version). It works, but now my programs run slower, regardless of the > > optimation options. There are many changes in 2.95, so it is possible that you have just bad luck and some of new features hurts your program. At the average 2.95 is a win (pretty noticeable). I would recommend you to try -mpreferred-stack-boundary=2 option. It turns off stack alignment code and makes executable smaller, function calling faster and may reduce performance of fp code, if some of the temporaries spilled to stack in internal loop gets missaligned. Honza