From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Merrill To: "Steve Snyder" Cc: egcs@cygnus.com Subject: Re: Questions on inlining of code Date: Thu, 18 Mar 1999 08:33:00 -0000 Message-id: In-reply-to: ssnyder@indy.net's message of 18 Mar 1999 07:31:37 -0800 References: <199903181530.KAA01307.cygnus.egcs@indy3.indy.net> X-SW-Source: 1999-03/msg00614.html >>>>> Steve Snyder writes: > Two question on inlining of code in egcs/pgcc: > 1. Is it possible to disable automatic inlining (compiler switches -O3 or > -finline) while still respecting the inline declaration in the source code? The switch you want is -fno-inline-functions; -fno-inline disables all inlining. Jason From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Merrill To: "Steve Snyder" Cc: egcs@cygnus.com Subject: Re: Questions on inlining of code Date: Wed, 31 Mar 1999 23:46:00 -0000 Message-ID: References: <199903181530.KAA01307.cygnus.egcs@indy3.indy.net> X-SW-Source: 1999-03n/msg00619.html Message-ID: <19990331234600.Msz_B8ZE-oZ7FlKlC_VjCB4aEFBHvx5S-lFRc0Mi-jk@z> >>>>> Steve Snyder writes: > Two question on inlining of code in egcs/pgcc: > 1. Is it possible to disable automatic inlining (compiler switches -O3 or > -finline) while still respecting the inline declaration in the source code? The switch you want is -fno-inline-functions; -fno-inline disables all inlining. Jason