Date: Sun, 30 Nov 1997 13:23:00 +0200 (IST) From: Eli Zaretskii To: baldo AT chasque DOT apc DOT org cc: djgpp AT delorie DOT com Subject: Re: BinUtils 2.8.1 speed. In-Reply-To: <3.0.1.32.19971128012725.00690fbc@chasque.apc.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Fri, 28 Nov 1997 baldo AT chasque DOT apc DOT org wrote: > Does not -fomit-frame-pointer supposed to produce better code? You use -O3 that bloats the code by inlining functions. The bloat might be such that it overshadows any gains from the extra register that -fomit-fram-pointer gets. But that's speculation. You need to look at the code produced by GCC to understand the reason. In general, I find -O3 a bad idea.