Date: Thu, 9 Dec 1999 16:05:46 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: George Ryot cc: djgpp AT delorie DOT com Subject: Re: fftw give nonsense with float ok with double In-Reply-To: <384e8f71.5388976@news.clara.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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 Wed, 8 Dec 1999, George Ryot wrote: > Eli Zaretskii wrote: > > > 2. Why do you use -O3? If you don't have any special reason, try -O2 > > instead, it usually yields better results anyway. > > I am wondering in what way does -O2 yield better results than -O3, are > you refering to code size or is there another consideration? No, I meant speed. In many cases, -O2 yields a faster program, the usual cause being code cache overflow. In addition, -O2 is much better tested, since it is the usual optimization level, so many programs, including the compiler itself, are compiled with it. Therefore, bugs are less probable to happen with -O2.