diff options
author | Richard Sandiford <richard@codesourcery.com> | 2005-07-21 06:51:25 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2005-07-21 06:51:25 +0000 |
commit | cb83c2ec4187b1781ea17180267bcfe90f5e0e9c (patch) | |
tree | 814b2815853aadb05602d3e230648d6115fe2702 /gcc/gcse.c | |
parent | 5e5cbbfb8e0f8b3e20d5fe1da84fbd545e91f537 (diff) | |
download | gcc-cb83c2ec4187b1781ea17180267bcfe90f5e0e9c.zip gcc-cb83c2ec4187b1781ea17180267bcfe90f5e0e9c.tar.gz gcc-cb83c2ec4187b1781ea17180267bcfe90f5e0e9c.tar.bz2 |
re PR rtl-optimization/22167 (Strange optimization bug when using -Os)
PR rtl-optimization/22167
* gcse.c (hoist_code): Fix hoist_exprs[] check.
From-SVN: r102219
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4898,7 +4898,7 @@ hoist_code (void) insn_inserted_p = 0; /* These tests should be the same as the tests above. */ - if (TEST_BIT (hoist_vbeout[bb->index], i)) + if (TEST_BIT (hoist_exprs[bb->index], i)) { /* We've found a potentially hoistable expression, now we look at every block BB dominates to see if it |