Xref: news2.mv.net comp.os.msdos.djgpp:787 From: Charles Sandmann Newsgroups: comp.os.msdos.djgpp Subject: Re: GCC 2.7.2 Date: Sun, 04 Feb 1996 15:45:07 CST Organization: Rice University, Houston, Texas Lines: 5 Message-ID: <311528e3.sandmann@clio.rice.edu> References: Reply-To: sandmann AT clio DOT rice DOT edu NNTP-Posting-Host: clio.rice.edu To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp > -O3 inlines functions which were declared `inline'. Actually, -O3 inlines everything in sight, including static routines (and even non-static ones in the same module). So the executable may get much larger in size. Unless you use lots of tiny routines, I prefer -O2.