>>>>> Steve Snyder <ssnyder@indy.net> 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