From d98a8d38dd84a3ffff7bf7366ca5972997245129 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Wed, 14 Jun 2000 14:08:15 -0700 Subject: conflict.c (conflict_graph_compute): Don't look for REG_INC. * conflict.c (conflict_graph_compute): Don't look for REG_INC. * config/ia64/ia64.c (ia64_setup_incoming_varargs): Don't emit auto-inc code. From-SVN: r34557 --- gcc/conflict.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'gcc/conflict.c') diff --git a/gcc/conflict.c b/gcc/conflict.c index f8e8609..d467ba1 100644 --- a/gcc/conflict.c +++ b/gcc/conflict.c @@ -483,12 +483,7 @@ conflict_graph_compute (regs, p) we're in SSA form, if a reg is set here it isn't set anywhere elso, so this insn is where the reg is born. */ CLEAR_REG_SET (born); - note_stores (PATTERN (insn), mark_reg, (void *) born); -#ifdef AUTO_INC_DEC - for (link = REG_NOTES (insn); link; link = XEXP (link, 1)) - if (REG_NOTE_KIND (link) == REG_INC) - mark_reg (XEXP (link, 0), NULL_RTX, NULL); -#endif + note_stores (PATTERN (insn), mark_reg, born); AND_REG_SET (born, regs); /* Regs born here were not live before this insn. */ -- cgit v1.1