Commit 84607dc1 by Jim Wilson

*** empty log message ***

From-SVN: r205
parent 34e56753
/* Analyze RTL for C-Compiler
Copyright (C) 1987-1991 Free Software Foundation, Inc.
Copyright (C) 1987, 1988, 1991 Free Software Foundation, Inc.
This file is part of GNU CC.
......@@ -408,7 +408,7 @@ reg_set_between_p (reg, from_insn, to_insn)
for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
&& reg_set_p (reg, PATTERN (insn)))
&& reg_set_p (reg, insn))
return 1;
return 0;
}
......
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