On Wed, Oct 15, 2008 at 4:44 PM, Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net wrote:
On 16.10.2008 01:13, Peter Stuge wrote:
ron minnich wrote:
Myles, try setting -mregparm=0 and see if life is better.
Good find.
__attribute__((stdcall)) will do this for you. Changing compilation mode makes code to -mregparm=0 makes the code bigger and slower and it will also possibly consume more stack which we don't have in MP setups.
ok let's do that. I was wondering about that too.
ron