diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-08-04 19:12:26 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-08-04 19:12:26 -0400 |
commit | 20748cab1fc34df007924fd42bc7740e418a7624 (patch) | |
tree | 046ae6eac10a463cfae2688f4ff46b80b485f867 /gcc | |
parent | 543624ee233050ac5b43ff8be6488a7a1d95f28d (diff) | |
download | gcc-20748cab1fc34df007924fd42bc7740e418a7624.zip gcc-20748cab1fc34df007924fd42bc7740e418a7624.tar.gz gcc-20748cab1fc34df007924fd42bc7740e418a7624.tar.bz2 |
(eliminate_regs_in_insn): Fix typo in last change.
From-SVN: r5071
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 6d872ec..32c4b11 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -3242,7 +3242,7 @@ eliminate_regs_in_insn (insn, replace) to a register that we eliminate and could cause a different number of spill registers to be needed in the final reload pass than in the pre-passes. */ - if (val) + if (val && REG_NOTES (insn) != 0) REG_NOTES (insn) = eliminate_regs (REG_NOTES (insn), 0, NULL_RTX); if (! replace) |