Commit ec8628e8 by Jakub Jelinek Committed by Jakub Jelinek

re PR middle-end/33670 (cc1 segfault with -O2 -fsched-stalled-insns=0 for twolf)

	PR middle-end/33670
	* haifa-sched.c (ok_for_early_queue_removal): Don't walk out of the
	current sched region.

	* gcc.dg/pr33670.c: New test.

From-SVN: r129863
parent eba5fc70
2007-11-03 Jakub Jelinek <jakub@redhat.com>
PR middle-end/33670
* haifa-sched.c (ok_for_early_queue_removal): Don't walk out of the
current sched region.
2007-11-02 Jakub Jelinek <jakub@redhat.com>
* config/ia64/ia64.c (struct reg_write_state): Change into
......@@ -1590,6 +1590,12 @@ ok_for_early_queue_removal (rtx insn)
{
int cost;
if (prev_insn == current_sched_info->prev_head)
{
prev_insn = NULL;
break;
}
if (!NOTE_P (prev_insn))
{
dep_t dep;
......
2007-11-03 Jakub Jelinek <jakub@redhat.com>
PR middle-end/33670
* gcc.dg/pr33670.c: New test.
2007-11-02 Jakub Jelinek <jakub@redhat.com>
PR c++/33516
/* PR middle-end/33670 */
/* { dg-do compile } */
/* { dg-options "-O2 -fsched-stalled-insns=0" } */
struct B
{
int p;
int n;
};
extern struct B ***b;
extern int a;
int
foo (int d, int e)
{
int c;
for (c = d; c <= e; c++)
b[a][c]->n = b[a][c]->p;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment