Re: [sqlite] Use of alloca() in SQLite sources

2004-04-26 Thread Doug Currie
> If I make use of alloca() in SQLite version 3, will this > cause any extreme hardships? Who is using a C compiler to > build SQLite that does not support alloca()? Warning: there are gcc bugs in the x86 optimizer related to alloca(). E.g.,

Re: [sqlite] Use of alloca() in SQLite sources

2004-04-26 Thread James W. Walker
Will Leshner <[EMAIL PROTECTED]> wrote: I could be wrong, but I think alloca() may not be available to CodeWarrior. No, looks like it's defined in CodeWarrior for Mac and Windows, at least in the latest version (CodeWarrior Dev. Studio 9). -- James W. Walker, ScriptPerfection Enterprises, Inc.

Re: [sqlite] Use of alloca() in SQLite sources

2004-04-26 Thread Will Leshner
D. Richard Hipp wrote: If I make use of alloca() in SQLite version 3, will this cause any extreme hardships? Who is using a C compiler to build SQLite that does not support alloca()? I could be wrong, but I think alloca() may not be available to CodeWarrior. It probably wouldn't be hard to

Re: [sqlite] Use of alloca() in SQLite sources

2004-04-26 Thread Amit Upadhyay
On Mon, 26 Apr 2004, D. Richard Hipp wrote: ~ If I make use of alloca() in SQLite version 3, will this ~ cause any extreme hardships? Who is using a C compiler to ~ build SQLite that does not support alloca()? I have been avoiding using it for my programs heeding the following warnings from the