This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/11491] Problem with optimized inline caller of alloca()
- From: "tingjun dot wen at idt dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Jul 2003 22:47:13 -0000
- Subject: [Bug middle-end/11491] Problem with optimized inline caller of alloca()
- References: <20030710170048.11491.tingjun.wen@idt.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11491
------- Additional Comments From tingjun dot wen at idt dot com 2003-07-10 22:47 -------
Thank you guys for the quick response.
I am wondering whether disabling inlining of alloca's caller is a
temporary solution since I think by simply adding a
"addl $16384, %esp" to "release" the stack space will solve
this problem. To further optimize the code, we can take out
"subl $16384, %esp" out of the loop and eliminate "addl $16384, %esp".