This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/31827] limits-exprparen.c: Pid 2297 received a SIGSEGV for stack growth failure
- From: "jakub at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 7 Mar 2011 21:36:19 +0000
- Subject: [Bug middle-end/31827] limits-exprparen.c: Pid 2297 received a SIGSEGV for stack growth failure
- Auto-submitted: auto-generated
- References: <bug-31827-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
--- Comment #17 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-03-07 21:35:24 UTC ---
Created attachment 23578
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=23578
Implement stack in c_parser_binary_operation as VEC
And here is the alternative to use global VEC as c_parser_binary_expression
stack. The stack size in my case for c_parser_binary_expression decreases from
sub $0x218, %rsp to sub $0x78, %rsp.
Paolo's patch is clearly better than my first patch, sorry for not reading it
first.