[Bug middle-end/17965] ice in expand_call

2005-11-21 Thread jakub at gcc dot gnu dot org
--- Comment #12 from jakub at gcc dot gnu dot org 2005-11-21 09:41 --- Subject: Bug 17965 Author: jakub Date: Mon Nov 21 09:41:42 2005 New Revision: 107289 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=107289 Log: PR middle-end/17965 * calls.c (expand_call, emit

[Bug middle-end/17965] ice in expand_call

2005-06-26 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-26 14:36 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug middle-end/17965] ice in expand_call

2005-06-25 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-26 05:27 --- Subject: Bug 17965 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-26 05:27:15 Modified files: gcc: ChangeLog calls.c gcc/testsu

[Bug middle-end/17965] ice in expand_call

2005-06-22 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-22 12:07 --- Patch was posted here: -- What|Removed |Added --

[Bug middle-end/17965] ice in expand_call

2004-11-28 Thread amodra at bigpond dot net dot au
--- Additional Comments From amodra at bigpond dot net dot au 2004-11-28 10:25 --- If I recollect correctly, stack_usage_map is only relevant for libcalls that might be executed when evaluating arguments for a call. ie. There's no need to cater for arbitrary user function calls. This s

[Bug middle-end/17965] ice in expand_call

2004-11-25 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-25 18:44 --- The problem is that we don't mark structs which are passed by reference really by reference so it adds it to the size of the arguments which is wrong. Simple example: struct a { int a2[1024][1024]; int

[Bug middle-end/17965] ice in expand_call

2004-10-13 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2004-10-13 13:29 --- I still can't reproduce with a snapshot from an hour ago. This is my command line: /home/bangerth/bin/gcc-4.0-pre/bin/c++ -mtune=k8 -c x.cc -O2 W. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17965

[Bug middle-end/17965] ice in expand_call

2004-10-12 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-13 03:17 --- I had forgot to uncomment the needed line in the given source: //for (int i = 0; i < 5; i++) test<1024>(); The comment in the source says it all though: // As soon as I uncomment the following line

[Bug middle-end/17965] ice in expand_call

2004-10-12 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2004-10-13 03:07 --- Can you post the complete command line? I can't reproduce with Giovanni's options as well as -O2 with a snapshot from 20040930. W. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17965

[Bug middle-end/17965] ice in expand_call

2004-10-12 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-13 02:35 --- Confirmed (I can do this because this was basically PR 16578). -- What|Removed |Added