[MP3 ENCODER] profiling

1999-12-13 Thread michael cheng
Hi all, I'm sure I've asked this before, but i've got a terrible memory (and I'm having troubles getting my mail folders out of my backups): How do I make absolutely sure that a function appears in the gprof profile. It isn't declared implicitly inline, but the optimizer (-O9)

Re: [MP3 ENCODER] profiling

1999-12-13 Thread Monty
How do I make absolutely sure that a function appears in the gprof profile. It isn't declared implicitly inline, but the optimizer (-O9) inlines lots of things. Is there a keyword to prevent it? -fno-inline. It's all in the info file (and unlike most stuff in info, this is easy to

Re: Re: [MP3 ENCODER] profiling

1999-12-13 Thread Mathew Hendry
From: "michael cheng" [EMAIL PROTECTED] -fno-inline. It's all in the info file (and unlike most stuff in info, this is easy to find :-). But I want *everything else* inlined (if possible), except this one function. I don't know of any neat way around this (there's no "noinline" keyword