From 8bb196585a6673cb5f3f82d98f89c21281877584 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 3 Apr 1997 15:08:40 -0800 Subject: (no_conflict_p): Reject sequences with foreign insns. From-SVN: r13838 --- gcc/local-alloc.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'gcc/local-alloc.c') diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 6f9c796d93c..8e75aa80488 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -2364,8 +2364,12 @@ no_conflict_p (insn, r0, r1) if (find_reg_note (p, REG_DEAD, r1)) ok = 1; - if (reg_mentioned_p (r1, PATTERN (p)) - && ! find_reg_note (p, REG_NO_CONFLICT, r1)) + /* There must be a REG_NO_CONFLICT note on every insn, otherwise + some earlier optimization pass has inserted instructions into + the sequence, and it is not safe to perform this optimization. + Note that emit_no_conflict_block always ensures that this is + true when these sequences are created. */ + if (! find_reg_note (p, REG_NO_CONFLICT, r1)) return 0; } -- cgit v1.2.1