aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@cygnus.com>1999-10-17 08:53:48 +0000
committerJeff Law <law@gcc.gnu.org>1999-10-17 02:53:48 -0600
commit3cce638b2b10ea1657b9d15f911dc4ff71ce64a8 (patch)
treea2582628704b65fbc2175c42038a87eebe1a4792 /gcc/gcse.c
parent1e875952c8ad86c673854aca1458a3c1ac7c7c74 (diff)
downloadgcc-3cce638b2b10ea1657b9d15f911dc4ff71ce64a8.zip
gcc-3cce638b2b10ea1657b9d15f911dc4ff71ce64a8.tar.gz
gcc-3cce638b2b10ea1657b9d15f911dc4ff71ce64a8.tar.bz2
* gcse.c (hash_scan_set): Remove incorrect ! optimize_size check.
From-SVN: r30054
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index f43f382..bb6dfd8 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -1912,7 +1912,7 @@ hash_scan_set (pat, insn, set_p)
{
/* An expression is not anticipatable if its operands are
modified before this insn. */
- int antic_p = ! optimize_size && oprs_anticipatable_p (src, insn);
+ int antic_p = oprs_anticipatable_p (src, insn);
/* An expression is not available if its operands are
subsequently modified, including this insn. */
int avail_p = oprs_available_p (src, insn);