GCC with patches for Dreamcast
修订版 | 84607dc137419cd7c5e7c4d10c9710b92aac6080 (tree) |
---|---|
时间 | 1992-01-18 09:05:16 |
作者 | Jim Wilson <wilson@gcc....> |
Commiter | Jim Wilson |
*** empty log message ***
From-SVN: r205
@@ -1,5 +1,5 @@ | ||
1 | 1 | /* Analyze RTL for C-Compiler |
2 | - Copyright (C) 1987-1991 Free Software Foundation, Inc. | |
2 | + Copyright (C) 1987, 1988, 1991 Free Software Foundation, Inc. | |
3 | 3 | |
4 | 4 | This file is part of GNU CC. |
5 | 5 |
@@ -408,7 +408,7 @@ reg_set_between_p (reg, from_insn, to_insn) | ||
408 | 408 | |
409 | 409 | for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn)) |
410 | 410 | if (GET_RTX_CLASS (GET_CODE (insn)) == 'i' |
411 | - && reg_set_p (reg, PATTERN (insn))) | |
411 | + && reg_set_p (reg, insn)) | |
412 | 412 | return 1; |
413 | 413 | return 0; |
414 | 414 | } |