diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-06 13:14:37 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-06 13:14:37 -0400 |
commit | ce9c8df26c33441857391f5b69f2bbd1c5349460 (patch) | |
tree | 5ef93bb5984cd7ff48cc8bde2ff1073ee11f8efb /gcc | |
parent | 0ebba7fc0d18e3fd0e37442dd4d9e142947689a9 (diff) | |
download | gcc-ce9c8df26c33441857391f5b69f2bbd1c5349460.zip gcc-ce9c8df26c33441857391f5b69f2bbd1c5349460.tar.gz gcc-ce9c8df26c33441857391f5b69f2bbd1c5349460.tar.bz2 |
(reg_set_last): Fix call to reg_set_between_p.
From-SVN: r10432
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rtlanal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 517b293..17cfd36 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -905,7 +905,7 @@ reg_set_last (x, insn) || ((GET_CODE (reg_set_last_value) == REG || GET_CODE (reg_set_last_value) == SUBREG) && ! reg_set_between_p (reg_set_last_value, - NEXT_INSN (insn), orig_insn))) + insn, orig_insn))) return reg_set_last_value; else return 0; |