aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-02-18 23:47:59 +0000
committerJeff Law <law@gcc.gnu.org>1998-02-18 16:47:59 -0700
commit3875b31da7e22e83f5a5ca696e88a7c13f967b75 (patch)
treef01bbfb943cd25839e0f686e373c25f429fccc0f
parent8edcf09f308ac231e40afebacd2c94dba502f809 (diff)
downloadgcc-3875b31da7e22e83f5a5ca696e88a7c13f967b75.zip
gcc-3875b31da7e22e83f5a5ca696e88a7c13f967b75.tar.gz
gcc-3875b31da7e22e83f5a5ca696e88a7c13f967b75.tar.bz2
* loop.c (force_movables): Fix typo.
From-SVN: r18102
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/loop.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 11a27d3..af49963 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Thu Feb 19 00:46:59 1998 Jeffrey A Law (law@cygnus.com)
+
+ * loop.c (force_movables): Fix typo.
+
Thu Feb 19 08:26:30 1998 Manfred Hollstein <manfred@s-direktnet.de>
* m88k.h: Change file pattern to match reality.
diff --git a/gcc/loop.c b/gcc/loop.c
index 2a3bcec..ddce9e8 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -1305,7 +1305,7 @@ force_movables (movables)
{
m->forces = m1;
m1->lifetime += m->lifetime;
- m1->savings += m1->savings;
+ m1->savings += m->savings;
}
}
}