[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-11-07 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-08 04:04 --- Fixed. -- What|Removed |Added Status|WAITING |RESOLVED

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-11-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-11-06 18:31 --- Subject: Bug 17933 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-11-06 18:30:57 Modified files: gcc/testsuite : ChangeLog Added files:

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-11-06 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-11-06 18:33 --- Subject: Bug 17933 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-11-06 18:33:04 Modified files: gcc: ChangeLog rtlanal.c Log message:

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-11-06 Thread hp at gcc dot gnu dot org
--- Additional Comments From hp at gcc dot gnu dot org 2004-11-06 18:37 --- Please check the updated patch on hppa64. After that, we can close this. -- What|Removed |Added

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-31 Thread hp at gcc dot gnu dot org
--- Additional Comments From hp at gcc dot gnu dot org 2004-11-01 00:57 --- Call for testing, URL:http://gcc.gnu.org/ml/gcc-patches/2004-11/msg2.html. -- What|Removed |Added

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-31 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2004-11-01 01:29 --- Subject: Re: [4.0 Regression] ICE: in schedule_in Call for testing, URL:http://gcc.gnu.org/ml/gcc-patches/2004-11/msg2.html. I have a test going now on hppa-unknown-linux-gnu. I will start

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-30 Thread hp at gcc dot gnu dot org
--- Additional Comments From hp at gcc dot gnu dot org 2004-10-30 18:23 --- I'm just going to look at it briefly... -- What|Removed |Added AssignedTo|unassigned at

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-11 15:55 --- /* Verify the counts of basic block notes in single the basic block regions. */ Hmm. -- What|Removed |Added

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-11 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2004-10-11 16:06 --- Subject: Re: [4.0 Regression] ICE: in schedule_in --- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-11 15:55 --- /* Verify the counts of basic block notes in

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-11 17:53 --- Here is a C example which is almost equivalent to the objective-C example: struct d { int a; }; void abort(void); typedef struct d (*f) (int i); f ff(void); void test1(void) { if ((ff())(0).a != 0)

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-11 Thread dave at hiauly1 dot hia dot nrc dot ca
--- Additional Comments From dave at hiauly1 dot hia dot nrc dot ca 2004-10-11 18:02 --- Subject: Re: [4.0 Regression] ICE: in schedule_in Here is a C example which is almost equivalent to the objective-C example: struct d { int a; }; void abort(void); typedef struct d (*f)

[Bug rtl-optimization/17933] [4.0 Regression] ICE: in schedule_insns, at /sched-rgn.c:2555

2004-10-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-11 18:07 --- And here is a test which is little smaller (which generates the same problem/error): struct d { int a; }; void abort(void); typedef struct d (*f) (int i); f ff(void); void test1() { f t = ff(); t(0); }