aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1999-01-17 20:40:02 -0700
committerJeff Law <law@gcc.gnu.org>1999-01-17 20:40:02 -0700
commit063cd52287c622e4a1f317b2c1e77d11b34f1c36 (patch)
tree52d1a14797349fbbabad020162fdb2e645d316fc /gcc
parent23473647080627fa4b42dec6627b9bf3d140b4d4 (diff)
downloadgcc-063cd52287c622e4a1f317b2c1e77d11b34f1c36.zip
gcc-063cd52287c622e4a1f317b2c1e77d11b34f1c36.tar.gz
gcc-063cd52287c622e4a1f317b2c1e77d11b34f1c36.tar.bz2
Fix thinko from last second true_dependence -> anti_dependence change.
From-SVN: r24738
Diffstat (limited to 'gcc')
-rw-r--r--gcc/flow.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index e30972c..244a662 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -2741,8 +2741,7 @@ mark_used_regs (needed, live, x, final, insn)
while (temp)
{
- if (anti_dependence (XEXP (temp, 0), GET_MODE (x),
- x, rtx_addr_varies_p))
+ if (anti_dependence (XEXP (temp, 0), x))
{
/* Splice temp out of the list. */
if (prev)